Advertisement
Guest User

Untitled

a guest
Feb 8th, 2016
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.04 KB | None | 0 0
  1. jose@jose-desktop:~/Workspace/pastie$ rake routes
  2. Prefix Verb URI Pattern Controller#Action
  3. new_user_session GET /users/sign_in(.:format) devise/sessions#new
  4. user_session POST /users/sign_in(.:format) devise/sessions#create
  5. destroy_user_session DELETE /users/sign_out(.:format) devise/sessions#destroy
  6. user_omniauth_authorize GET|POST /users/auth/:provider(.:format) callbacks#passthru {:provider=>/github|facebook|google_oauth2/}
  7. user_omniauth_callback GET|POST /users/auth/:action/callback(.:format) callbacks#(?-mix:github|facebook|google_oauth2)
  8. user_password POST /users/password(.:format) devise/passwords#create
  9. new_user_password GET /users/password/new(.:format) devise/passwords#new
  10. edit_user_password GET /users/password/edit(.:format) devise/passwords#edit
  11. PATCH /users/password(.:format) devise/passwords#update
  12. PUT /users/password(.:format) devise/passwords#update
  13. cancel_user_registration GET /users/cancel(.:format) registrations#cancel
  14. user_registration POST /users(.:format) registrations#create
  15. new_user_registration GET /users/sign_up(.:format) registrations#new
  16. edit_user_registration GET /users/edit(.:format) registrations#edit
  17. PATCH /users(.:format) registrations#update
  18. PUT /users(.:format) registrations#update
  19. DELETE /users(.:format) registrations#destroy
  20. user_omniauth_upgrade GET /users/auth/:provider/upgrade(.:format) omniauth_callbacks#upgrade
  21. GET /users/auth/:provider/setup(.:format) omniauth_callbacks#setup
  22. user GET /users/:id(.:format) users#show
  23. like_listing_comment PUT /listings/:listing_id/comments/:id/like(.:format) comment#upvote
  24. unlike_listing_comment PUT /listings/:listing_id/comments/:id/unlike(.:format) comment#downvote
  25. listing_comments GET /listings/:listing_id/comments(.:format) comments#index
  26. POST /listings/:listing_id/comments(.:format) comments#create
  27. new_listing_comment GET /listings/:listing_id/comments/new(.:format) comments#new
  28. edit_listing_comment GET /listings/:listing_id/comments/:id/edit(.:format) comments#edit
  29. listing_comment GET /listings/:listing_id/comments/:id(.:format) comments#show
  30. PATCH /listings/:listing_id/comments/:id(.:format) comments#update
  31. PUT /listings/:listing_id/comments/:id(.:format) comments#update
  32. DELETE /listings/:listing_id/comments/:id(.:format) comments#destroy
  33. like_listing PUT /listings/:id/like(.:format) listings#upvote
  34. unlike_listing PUT /listings/:id/unlike(.:format) listings#downvote
  35. search_listings GET /listings/search(.:format) listings#search
  36. listings GET /listings(.:format) listings#index
  37. POST /listings(.:format) listings#create
  38. new_listing GET /listings/new(.:format) listings#new
  39. edit_listing GET /listings/:id/edit(.:format) listings#edit
  40. listing GET /listings/:id(.:format) listings#show
  41. PATCH /listings/:id(.:format) listings#update
  42. PUT /listings/:id(.:format) listings#update
  43. DELETE /listings/:id(.:format) listings#destroy
  44. users_show GET /users/show(.:format) users#show
  45. root GET / listings#index
  46. pages_about GET /pages/about(.:format) pages#about
  47. contact_contactus GET /contact/contactus(.:format) contact#contactus
  48. contact POST /contact(.:format) contact#contactus
  49. GET|POST /:controller(/:action(/:id))(.:format) :controller#:action
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement