Last active
August 29, 2015 13:57
-
-
Save tcannonfodder/9498557 to your computer and use it in GitHub Desktop.
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
products GET /products(.:format) products#index | |
POST /products(.:format) products#create | |
new_product GET /products/new(.:format) products#new | |
edit_product GET /products/:id/edit(.:format) products#edit | |
product GET /products/:id(.:format) products#show | |
PUT /products/:id(.:format) products#update | |
DELETE /products/:id(.:format) products#destroy |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment