Skip to content

Instantly share code, notes, and snippets.

@sevenseacat
Created June 11, 2014 03:14
Show Gist options
  • Save sevenseacat/e348913a147ed7c38619 to your computer and use it in GitHub Desktop.
Save sevenseacat/e348913a147ed7c38619 to your computer and use it in GitHub Desktop.
resources :contracts do
get :reprint, on: :member
# or alternatively
member do
get :reprint
end
end
# will generate links like /contracts/123/reprint
# and give you a routing helper like reprint_contract_path(@contract) or you can use [:reprint, @contract]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment