Module: Hanami::Action::Callbacks::InstanceMethods Private
- Defined in:
- lib/idempotency/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
Instance Method Summary collapse
-
#call(params) ⇒ Object
private
Implements the Rack/Hanami::Action protocol.
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
99 100 101 102 103 |
# File 'lib/idempotency/hanami/action/callbacks.rb', line 99 def call(params) _run_before_callbacks(params) _run_around_callbacks(params) { super } _run_after_callbacks(params) end |