Flowdock
method

collection

Importance_1
v3.2.13 - Show latest stable - 0 notes - Class: ActionDispatch::Routing::Mapper::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.

Show source
Register or log in to add new notes.