Skip to content

Instantly share code, notes, and snippets.

View seekingcat's full-sized avatar

Melanie Hudson seekingcat

View GitHub Profile
@seekingcat
seekingcat / restful_routes.md
Created January 30, 2018 10:14 — forked from alexpchin/restful_routes.md
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