instance method
process_action
Ruby on Rails 6.0.6
Since v3.0.20Signature
process_action(*args)
Override AbstractController::Base#process_action to run the process_action callbacks around the normal behavior.
Parameters
-
argsrest
Source
# File actionpack/lib/abstract_controller/callbacks.rb, line 40
def process_action(*args)
run_callbacks(:process_action) do
super
end
end
Defined in actionpack/lib/abstract_controller/callbacks.rb line 40
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in AbstractController::Callbacks