Module: Lotus::Action::Callbacks::InstanceMethods

Defined in:
lib/lotus/action/callbacks.rb

Overview

Since:

  • 0.1.0

Instance Method Summary collapse

Instance Method Details

#call(params) ⇒ Object

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Implements the Rack/Lotus::Action protocol

Since:

  • 0.1.0



121
122
123
124
125
# File 'lib/lotus/action/callbacks.rb', line 121

def call(params)
  _run_before_callbacks(params)
  super
  _run_after_callbacks(params)
end