module AbstractController::Callbacks

def process_action(...)

process_action callbacks around the normal behavior.
Override AbstractController::Base#process_action to run the
def process_action(...)
  run_callbacks(:process_action) do
    super
  end
end