Skip to content

Instantly share code, notes, and snippets.

@nesquena
Created February 23, 2015 08:39
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 nesquena/9c8a753dab20c6df127d to your computer and use it in GitHub Desktop.
Save nesquena/9c8a753dab20c6df127d to your computer and use it in GitHub Desktop.
Api::App.controllers :posts, map: "api/v1/posts" do
get :index, map: "" do
end
post :create, map: "" do
end
get :show, map: ":id" do
end
patch :update, map: ":id" do
end
delete :destroy, map: ":id" do
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment