method
map_default_collection_actions
v3.0.9 -
Show latest stable
- Class:
ActionDispatch::Routing::DeprecatedMapper
map_default_collection_actions(map, resource)private
No documentation available.
# File actionpack/lib/action_dispatch/routing/deprecated_mapper.rb, line 441
def map_default_collection_actions(map, resource)
index_route_name = "#{resource.name_prefix}#{resource.plural}"
if resource.uncountable?
index_route_name << "_index"
end
map_resource_routes(map, resource, :index, resource.path, index_route_name)
map_resource_routes(map, resource, :create, resource.path, index_route_name)
end