Module: Hanami::Action::Callbacks::InstanceMethods Private

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

Overview

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

Callbacks API instance methods

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/Hanami::Action protocol

Since:

  • 0.1.0



193
194
195
196
197
# File 'lib/hanami/action/callbacks.rb', line 193

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