AbstractController::Callbacks
Namespace
Methods
P
Included Modules
Instance Public methods
process_action(*args)

Override AbstractController::Base's #process_action to run the #process_action callbacks around the normal behavior.

# File actionpack/lib/abstract_controller/callbacks.rb, line 18
def process_action(*args)
  run_callbacks(:process_action) do
    super
  end
end