Created
May 1, 2014 12:57
-
-
Save hhutch/11451136 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $ rake routes | |
| Prefix Verb URI Pattern Controller#Action | |
| tasks GET /tasks(.:format) tasks#index | |
| POST /tasks(.:format) tasks#create | |
| task GET /tasks/:id(.:format) tasks#show | |
| PATCH /tasks/:id(.:format) tasks#update | |
| PUT /tasks/:id(.:format) tasks#update | |
| DELETE /tasks/:id(.:format) tasks#destroy | |
| new_api_v1_user_session GET /api/v1/users/sign_in(.:format) api/v1/sessions#new | |
| api_v1_user_session POST /api/v1/users/sign_in(.:format) api/v1/sessions#create | |
| destroy_api_v1_user_session DELETE /api/v1/users/sign_out(.:format) api/v1/sessions#destroy | |
| api_v1_user_password POST /api/v1/users/password(.:format) api/v1/passwords#create | |
| new_api_v1_user_password GET /api/v1/users/password/new(.:format) api/v1/passwords#new | |
| edit_api_v1_user_password GET /api/v1/users/password/edit(.:format) api/v1/passwords#edit | |
| PATCH /api/v1/users/password(.:format) api/v1/passwords#update | |
| PUT /api/v1/users/password(.:format) api/v1/passwords#update | |
| cancel_api_v1_user_registration GET /api/v1/users/cancel(.:format) api/v1/registration#cancel | |
| api_v1_user_registration POST /api/v1/users(.:format) api/v1/registration#create | |
| new_api_v1_user_registration GET /api/v1/users/sign_up(.:format) api/v1/registration#new | |
| edit_api_v1_user_registration GET /api/v1/users/edit(.:format) api/v1/registration#edit | |
| PATCH /api/v1/users(.:format) api/v1/registration#update | |
| PUT /api/v1/users(.:format) api/v1/registration#update | |
| DELETE /api/v1/users(.:format) api/v1/registration#destroy | |
| accept_api_v1_user_invitation GET /api/v1/users/invitation/accept(.:format) api/v1/invitations#edit | |
| remove_api_v1_user_invitation GET /api/v1/users/invitation/remove(.:format) api/v1/invitations#destroy | |
| api_v1_user_invitation POST /api/v1/users/invitation(.:format) api/v1/invitations#create | |
| new_api_v1_user_invitation GET /api/v1/users/invitation/new(.:format) api/v1/invitations#new | |
| PATCH /api/v1/users/invitation(.:format) api/v1/invitations#update | |
| PUT /api/v1/users/invitation(.:format) api/v1/invitations#update | |
| api_v1_login POST /api/v1/sessions(.:format) api/v1/sessions#create | |
| api_v1_logout DELETE /api/v1/sessions(.:format) api/v1/sessions#destroy | |
| api_v1_tasks GET /api/v1/tasks(.:format) api/v1/tasks#index | |
| POST /api/v1/tasks(.:format) api/v1/tasks#create | |
| api_v1_task GET /api/v1/tasks/:id(.:format) api/v1/tasks#show | |
| PATCH /api/v1/tasks/:id(.:format) api/v1/tasks#update | |
| PUT /api/v1/tasks/:id(.:format) api/v1/tasks#update | |
| DELETE /api/v1/tasks/:id(.:format) api/v1/tasks#destroy | |
| api_v1_users GET /api/v1/users(.:format) api/v1/users#index | |
| POST /api/v1/users(.:format) api/v1/users#create | |
| new_api_v1_user GET /api/v1/users/new(.:format) api/v1/users#new | |
| edit_api_v1_user GET /api/v1/users/:id/edit(.:format) api/v1/users#edit | |
| api_v1_user GET /api/v1/users/:id(.:format) api/v1/users#show | |
| PATCH /api/v1/users/:id(.:format) api/v1/users#update | |
| PUT /api/v1/users/:id(.:format) api/v1/users#update | |
| DELETE /api/v1/users/:id(.:format) api/v1/users#destroy |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment