Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save siddhant3030/77a7b246e8f0b01dd7c7ae2e9d64710e to your computer and use it in GitHub Desktop.
Save siddhant3030/77a7b246e8f0b01dd7c7ae2e9d64710e to your computer and use it in GitHub Desktop.
Prefix Verb URI Pattern Controller#Action
login GET /login(.:format) admin/sessions#new
logout GET /logout(.:format) admin/sessions#destroy
admin_posts GET /admin/posts(.:format) admin/posts#index
POST /admin/posts(.:format) admin/posts#create
new_admin_post GET /admin/posts/new(.:format) admin/posts#new
edit_admin_post GET /admin/posts/:id/edit(.:format) admin/posts#edit
admin_post GET /admin/posts/:id(.:format) admin/posts#show
PATCH /admin/posts/:id(.:format) admin/posts#update
PUT /admin/posts/:id(.:format) admin/posts#update
DELETE /admin/posts/:id(.:format) admin/posts#destroy
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment