Guest User

Untitled

a guest
Jun 23rd, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.49 KB | None | 0 0
  1. (in /home/*.com)
  2. owls GET /owls {:action=>"index", :controller=>"owls"}
  3. formatted_owls GET /owls.:format {:action=>"index", :controller=>"owls"}
  4. POST /owls {:action=>"create", :controller=>"owls"}
  5. POST /owls.:format {:action=>"create", :controller=>"owls"}
  6. new_owl GET /owls/new {:action=>"new", :controller=>"owls"}
  7. formatted_new_owl GET /owls/new.:format {:action=>"new", :controller=>"owls"}
  8. edit_owl GET /owls/:id/edit {:action=>"edit", :controller=>"owls"}
  9. formatted_edit_owl GET /owls/:id/edit.:format {:action=>"edit", :controller=>"owls"}
  10. owl GET /owls/:id {:action=>"show", :controller=>"owls"}
  11. formatted_owl GET /owls/:id.:format {:action=>"show", :controller=>"owls"}
  12. PUT /owls/:id {:action=>"update", :controller=>"owls"}
  13. PUT /owls/:id.:format {:action=>"update", :controller=>"owls"}
  14. DELETE /owls/:id {:action=>"destroy", :controller=>"owls"}
  15. DELETE /owls/:id.:format {:action=>"destroy", :controller=>"owls"}
  16. /:controller/:action/:id
  17. /:controller/:action/:id.:format
Add Comment
Please, Sign In to add comment