Module: AbstractController::Callbacks

Extended by:
ActiveSupport::Concern
Includes:
ActiveSupport::Callbacks
Defined in:
lib/filters.rb

Defined Under Namespace

Modules: ClassMethods

Instance Method Summary collapse

Instance Method Details

#process_action(*args) ⇒ Object

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



25
26
27
28
29
# File 'lib/filters.rb', line 25

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