method
collection
v5.0.0.1 -
Show latest stable
- Class:
ActionDispatch::Routing::Mapper::Scoping::Resources
collection()public
To add a route to the collection:
resources :photos do collection do get 'search' end end
This will enable Rails to recognize paths such as /photos/search with GET, and route to the search action of PhotosController. It will also create the search_photos_url and search_photos_path route helpers.