module AbstractController::Callbacks

def process_action(*args)

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