Skip to content

Instantly share code, notes, and snippets.

@dladowitz
Created July 19, 2012 21:53
Show Gist options
  • Save dladowitz/3147109 to your computer and use it in GitHub Desktop.
Save dladowitz/3147109 to your computer and use it in GitHub Desktop.
Custom Routes
RouterTester::Application.routes.draw do
resources :companies do
member do
put 'location'
end
end
resources :managers do
member do
get 'generate_statistics'
end
end
resources :employees do
member do
put 'promote'
get 'fire'
end
collection do
put 'show_all'
end
resources :evaluations do
resources :scores
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment