method

method_for_action

method_for_action(action_name)
public

No documentation available.

# File actionpack/lib/action_controller/metal/implicit_render.rb, line 13
    def method_for_action(action_name)
      super || begin
        if template_exists?(action_name.to_s, _prefix)
          "default_render"
        end
      end
    end