Module: Filters
- Extended by:
- ActiveSupport::Concern
- Includes:
- ActiveSupport::Callbacks
- Defined in:
- lib/filters.rb
Defined Under Namespace
Modules: ClassMethods
Instance Method Summary collapse
-
#process_action(*args) ⇒ Object
Override AbstractController::Base’s process_action to run the process_action callbacks around the normal behavior.
Instance Method Details
#process_action(*args) ⇒ Object
Override AbstractController::Base’s process_action to run the process_action callbacks around the normal behavior.
24 25 26 27 28 |
# File 'lib/filters.rb', line 24 def process_action(*args) run_callbacks(:process_action) do super end end |