module AbstractController::Callbacks

def process_action(...)

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