Created
December 23, 2008 13:04
-
-
Save danielvlopes/39325 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
accounts GET /accounts {:controller=>"accounts", :action=>"index"} | |
formatted_accounts GET /accounts.:format {:controller=>"accounts", :action=>"index"} | |
POST /accounts {:controller=>"accounts", :action=>"create"} | |
POST /accounts.:format {:controller=>"accounts", :action=>"create"} | |
new_account GET /accounts/new {:controller=>"accounts", :action=>"new"} | |
formatted_new_account GET /accounts/new.:format {:controller=>"accounts", :action=>"new"} | |
edit_account GET /accounts/:id/edit {:controller=>"accounts", :action=>"edit"} | |
formatted_edit_account GET /accounts/:id/edit.:format {:controller=>"accounts", :action=>"edit"} | |
account GET /accounts/:id {:controller=>"accounts", :action=>"show"} | |
formatted_account GET /accounts/:id.:format {:controller=>"accounts", :action=>"show"} | |
PUT /accounts/:id {:controller=>"accounts", :action=>"update"} | |
PUT /accounts/:id.:format {:controller=>"accounts", :action=>"update"} | |
DELETE /accounts/:id {:controller=>"accounts", :action=>"destroy"} | |
DELETE /accounts/:id.:format {:controller=>"accounts", :action=>"destroy"} | |
account_people GET /accounts/:account_id/people {:controller=>"people", :action=>"index"} | |
formatted_account_people GET /accounts/:account_id/people.:format {:controller=>"people", :action=>"index"} | |
POST /accounts/:account_id/people {:controller=>"people", :action=>"create"} | |
POST /accounts/:account_id/people.:format {:controller=>"people", :action=>"create"} | |
new_account_person GET /accounts/:account_id/people/new {:controller=>"people", :action=>"new"} | |
formatted_new_account_person GET /accounts/:account_id/people/new.:format {:controller=>"people", :action=>"new"} | |
edit_account_person GET /accounts/:account_id/people/:id/edit {:controller=>"people", :action=>"edit"} | |
formatted_edit_account_person GET /accounts/:account_id/people/:id/edit.:format {:controller=>"people", :action=>"edit"} | |
account_person GET /accounts/:account_id/people/:id {:controller=>"people", :action=>"show"} | |
formatted_account_person GET /accounts/:account_id/people/:id.:format {:controller=>"people", :action=>"show"} | |
PUT /accounts/:account_id/people/:id {:controller=>"people", :action=>"update"} | |
PUT /accounts/:account_id/people/:id.:format {:controller=>"people", :action=>"update"} | |
DELETE /accounts/:account_id/people/:id {:controller=>"people", :action=>"destroy"} | |
DELETE /accounts/:account_id/people/:id.:format {:controller=>"people", :action=>"destroy"} | |
people_notes GET /people/:person_id/notes {:controller=>"notes", :action=>"index"} | |
formatted_people_notes GET /people/:person_id/notes.:format {:controller=>"notes", :action=>"index"} | |
POST /people/:person_id/notes {:controller=>"notes", :action=>"create"} | |
POST /people/:person_id/notes.:format {:controller=>"notes", :action=>"create"} | |
new_people_note GET /people/:person_id/notes/new {:controller=>"notes", :action=>"new"} | |
formatted_new_people_note GET /people/:person_id/notes/new.:format {:controller=>"notes", :action=>"new"} | |
edit_people_note GET /people/:person_id/notes/:id/edit {:controller=>"notes", :action=>"edit"} | |
formatted_edit_people_note GET /people/:person_id/notes/:id/edit.:format {:controller=>"notes", :action=>"edit"} | |
people_note GET /people/:person_id/notes/:id {:controller=>"notes", :action=>"show"} | |
formatted_people_note GET /people/:person_id/notes/:id.:format {:controller=>"notes", :action=>"show"} | |
PUT /people/:person_id/notes/:id {:controller=>"notes", :action=>"update"} | |
PUT /people/:person_id/notes/:id.:format {:controller=>"notes", :action=>"update"} | |
DELETE /people/:person_id/notes/:id {:controller=>"notes", :action=>"destroy"} | |
DELETE /people/:person_id/notes/:id.:format {:controller=>"notes", :action=>"destroy"} | |
note_comments GET /notes/:note_id/comments {:controller=>"comments", :action=>"index"} | |
formatted_note_comments GET /notes/:note_id/comments.:format {:controller=>"comments", :action=>"index"} | |
POST /notes/:note_id/comments {:controller=>"comments", :action=>"create"} | |
POST /notes/:note_id/comments.:format {:controller=>"comments", :action=>"create"} | |
new_note_comment GET /notes/:note_id/comments/new {:controller=>"comments", :action=>"new"} | |
formatted_new_note_comment GET /notes/:note_id/comments/new.:format {:controller=>"comments", :action=>"new"} | |
edit_note_comment GET /notes/:note_id/comments/:id/edit {:controller=>"comments", :action=>"edit"} | |
formatted_edit_note_comment GET /notes/:note_id/comments/:id/edit.:format {:controller=>"comments", :action=>"edit"} | |
note_comment GET /notes/:note_id/comments/:id {:controller=>"comments", :action=>"show"} | |
formatted_note_comment GET /notes/:note_id/comments/:id.:format {:controller=>"comments", :action=>"show"} | |
PUT /notes/:note_id/comments/:id {:controller=>"comments", :action=>"update"} | |
PUT /notes/:note_id/comments/:id.:format {:controller=>"comments", :action=>"update"} | |
DELETE /notes/:note_id/comments/:id {:controller=>"comments", :action=>"destroy"} | |
DELETE /notes/:note_id/comments/:id.:format {:controller=>"comments", :action=>"destroy"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment