instance method
collection
Ruby on Rails 7.1.6
Since v3.0.20Signature
collection(&block)
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.
Parameters
-
blockblock
Source
# File actionpack/lib/action_dispatch/routing/mapper.rb, line 1548
def collection(&block)
unless resource_scope?
raise ArgumentError, "can't use collection outside resource(s) scope"
end
with_scope_level(:collection) do
path_scope(parent_resource.collection_scope, &block)
end
end
Defined in actionpack/lib/action_dispatch/routing/mapper.rb line 1548
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActionDispatch::Routing::Mapper::Resources