Module: AbstractController::Callbacks

Extended by:
ActiveSupport::Concern
Includes:
ActiveSupport::Callbacks
Included in:
ActionController::Caching, ActionController::ForceSSL, ActionController::RequestForgeryProtection, ActionMailer::Base
Defined in:
actionpack/lib/abstract_controller/callbacks.rb

Defined Under Namespace

Modules: ClassMethods

Constant Summary

Constants included from ActiveSupport::Callbacks

ActiveSupport::Callbacks::CALLBACK_FILTER_TYPES

Instance Method Summary collapse

Methods included from ActiveSupport::Concern

append_features, extended, included

Methods included from ActiveSupport::Callbacks

#run_callbacks

Instance Method Details

#process_action(*args) ⇒ Object

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



18
19
20
21
22
# File 'actionpack/lib/abstract_controller/callbacks.rb', line 18

def process_action(*args)
  run_callbacks(:process_action) do
    super
  end
end