Created
October 9, 2013 16:50
-
-
Save patrickmaciel/6904410 to your computer and use it in GitHub Desktop.
rake routes
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
Prefix Verb URI Pattern Controller#Action | |
root GET / articles#index | |
article_comments GET /articles/:article_id/comments(.:format) comments#index | |
POST /articles/:article_id/comments(.:format) comments#create | |
new_article_comment GET /articles/:article_id/comments/new(.:format) comments#new | |
edit_article_comment GET /articles/:article_id/comments/:id/edit(.:format) comments#edit | |
article_comment GET /articles/:article_id/comments/:id(.:format) comments#show | |
PATCH /articles/:article_id/comments/:id(.:format) comments#update | |
PUT /articles/:article_id/comments/:id(.:format) comments#update | |
DELETE /articles/:article_id/comments/:id(.:format) comments#destroy | |
articles GET /articles(.:format) articles#index | |
POST /articles(.:format) articles#create | |
new_article GET /articles/new(.:format) articles#new | |
edit_article GET /articles/:id/edit(.:format) articles#edit | |
article GET /articles/:id(.:format) articles#show | |
PATCH /articles/:id(.:format) articles#update | |
PUT /articles/:id(.:format) articles#update | |
DELETE /articles/:id(.:format) articles#destroy | |
users GET /users(.:format) users#index | |
POST /users(.:format) users#create | |
new_user GET /users/new(.:format) users#new | |
edit_user GET /users/:id/edit(.:format) users#edit | |
user GET /users/:id(.:format) users#show | |
PATCH /users/:id(.:format) users#update | |
PUT /users/:id(.:format) users#update | |
DELETE /users/:id(.:format) users#destroy | |
session POST /session(.:format) sessions#create | |
new_session GET /session/new(.:format) sessions#new | |
edit_session GET /session/edit(.:format) sessions#edit | |
GET /session(.:format) sessions#show | |
PATCH /session(.:format) sessions#update | |
PUT /session(.:format) sessions#update | |
DELETE /session(.:format) sessions#destroy | |
login GET /login(.:format) sessions#new | |
logout GET /logout(.:format) sessions#destroy |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment