Skip to content

Instantly share code, notes, and snippets.

@brayhoward
Forked from alexpchin/restful_routes.md
Created October 30, 2016 22:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save brayhoward/164ed35b47e2f95106f5bbfd8750cad0 to your computer and use it in GitHub Desktop.
Save brayhoward/164ed35b47e2f95106f5bbfd8750cad0 to your computer and use it in GitHub Desktop.
7 Restful Routes
URL HTTP Verb Action
/photos/ GET index
/photos/new GET new
/photos POST create
/photos/:id GET show
/photos/:id/edit GET edit
/photos/:id PATCH/PUT update
/photos/:id DELETE destroy
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment