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