Flowdock
method

prefix_name_for_action

Importance_0
v4.2.7 - Show latest stable - 0 notes - Class: Resources
prefix_name_for_action(as, action) protected

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 1736
          def prefix_name_for_action(as, action) #:nodoc:
            if as
              prefix = as
            elsif !canonical_action?(action)
              prefix = action
            end

            if prefix && prefix != '/' && !prefix.empty?
              Mapper.normalize_name prefix.to_s.tr('-', '_')
            end
          end
Register or log in to add new notes.