Last active
April 19, 2020 16:20
-
-
Save MittalPatel-BTC/95776299680f9f71894b28fff88530ae to your computer and use it in GitHub Desktop.
Below is the output of CRUD routes.
This file contains 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
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