Skip to content

Instantly share code, notes, and snippets.

@semaperepelitsa
Created June 29, 2012 02:46
Show Gist options
  • Save semaperepelitsa/3015372 to your computer and use it in GitHub Desktop.
Save semaperepelitsa/3015372 to your computer and use it in GitHub Desktop.
Common route abstracted using a method
Example::Application.routes.draw do
def trashable
post :trash, :restore, on: :member
end
resources :products do
trashable
end
resources :comments do
trashable
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment