Flowdock
method

map_new_actions

Importance_0
v2.3.8 - Show latest stable - 0 notes - Class: ActionController::Resources
map_new_actions(map, resource) private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File actionpack/lib/action_controller/resources.rb, line 614
      def map_new_actions(map, resource)
        resource.new_methods.each do |method, actions|
          actions.each do |action|
            route_path = resource.new_path
            route_name = "new_#{resource.name_prefix}#{resource.singular}"

            unless action == :new
              route_path = "#{route_path}#{resource.action_separator}#{action}"
              route_name = "#{action}_#{route_name}"
            end

            map_resource_routes(map, resource, action, route_path, route_name, method)
          end
        end
      end
Register or log in to add new notes.