Flowdock
method

prefix_name_for_action

Importance_0
v4.1.8 - 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 1669
          def prefix_name_for_action(as, action) #:nodoc:
            if as
              prefix = as
            elsif !canonical_action?(action, @scope[:scope_level])
              prefix = action
            end
            prefix.to_s.tr('-', '_') if prefix
          end
Register or log in to add new notes.