Flowdock
method

path_for_action

Importance_0
v6.1.3.1 - Show latest stable - 0 notes - Class: Resources
path_for_action(action, path) 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_dispatch/routing/mapper.rb, line 1816
          def path_for_action(action, path)
            return "#{@scope[:path]}/#{path}" if path

            if canonical_action?(action)
              @scope[:path].to_s
            else
              "#{@scope[:path]}/#{action_path(action)}"
            end
          end
Register or log in to add new notes.