instance method
process_action
Ruby on Rails 4.1.16
Since v3.0.20 Private — implementation detail, not part of the public APISignature
process_action(method_name, *args)
Call the action. Override this in a subclass to modify the behavior around processing an action. This, and not #process, is the intended way to override action dispatching.
Notice that the first argument is the method to be dispatched which is not necessarily the same as the action name.
Parameters
-
method_namereq -
argsrest
Source
# File actionpack/lib/abstract_controller/base.rb, line 188
def process_action(method_name, *args)
send_action(method_name, *args)
end
Defined in actionpack/lib/abstract_controller/base.rb line 188
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in AbstractController::Base