Skip to content

Instantly share code, notes, and snippets.

@swlkr
Created September 28, 2017 04:13
Show Gist options
  • Select an option

  • Save swlkr/d165225d9ffa7d201a16fc948f18058e to your computer and use it in GitHub Desktop.

Select an option

Save swlkr/d165225d9ffa7d201a16fc948f18058e to your computer and use it in GitHub Desktop.
(defroutes app-routes
(trail/get "/items" items/index)
(trail/get "/items/:id" items/show)
(trail/get "/items/:id/new" items/new!)
(trail/get "/items/:id/edit" items/edit)
(trail/post "/items" items/create)
(trail/put "/items/:id" items/update)
(trail/delete "/items/:id" items/delete))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment