Created
October 7, 2011 21:42
-
-
Save knwang/1271414 to your computer and use it in GitHub Desktop.
Proofing_oven: routes with search
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ProofingOven::Application.routes.draw do | |
match 'ui(/:action)', controller: 'ui' | |
root to: 'ui#index' | |
resources :candidates, only: [:index] do | |
collection do | |
post :search | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment