Skip to content

Instantly share code, notes, and snippets.

@MittalPatel-BTC
Last active April 19, 2020 16:20
Show Gist options
  • Save MittalPatel-BTC/95776299680f9f71894b28fff88530ae to your computer and use it in GitHub Desktop.
Save MittalPatel-BTC/95776299680f9f71894b28fff88530ae to your computer and use it in GitHub Desktop.
Below is the output of CRUD routes.
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
PUT /users/:id(.:format) users#update
DELETE /users/:id(.:format) users#destroy
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment