module SimpleController::Base::Callbacks

Public Instance Methods

call_action(*args) click to toggle source

Override SimpleController::Base‘s call to run the call callbacks around the normal behavior.

Calls superclass method
# File lib/simple_controller/base/callbacks.rb, line 18
def call_action(*args)
  run_callbacks(:call_action) do
    super
  end
end