method

collection

Importance_1
v7.2.3 - Show latest stable - 0 notes - Class: Resources
collection(&block) 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.

Show source
Register or log in to add new notes.