Flowdock
method

prefix_name_for_action

Importance_0
v6.1.3.1 - Show latest stable - 0 notes - Class: Resources
prefix_name_for_action(as, action) 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 1830
          def prefix_name_for_action(as, action)
            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.