method
map_collection_actions
v2.2.1 -
Show latest stable
- Class:
ActionController::Resources
map_collection_actions(map, resource)private
No documentation available.
# File actionpack/lib/action_controller/resources.rb, line 577
def map_collection_actions(map, resource)
resource.collection_methods.each do |method, actions|
actions.each do |action|
[method].flatten.each do |m|
map_resource_routes(map, resource, action, "#{resource.path}#{resource.action_separator}#{action}", "#{action}_#{resource.name_prefix}#{resource.plural}", m)
end
end
end
end