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