collection()
Instance Public methods
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.
Please login to continue.