Class: Core::Endpoint::BasicHandler::Actions::Bound::Handler

Inherits:
Core::Endpoint::BasicHandler
  • Object
show all
Includes:
InnerAction, Paged
Defined in:
app/api/core/endpoint/basic_handler/actions/bound/handler.rb

Overview

An instance of this class is responsible for dealing with a particular named action on a resource. It is as though this instance is actually part of the instance that it was registered within.

Instance Method Summary collapse

Constructor Details

#initialize(owner, name, options) ⇒ Handler

Returns a new instance of Handler.



9
10
11
12
# File 'app/api/core/endpoint/basic_handler/actions/bound/handler.rb', line 9

def initialize(owner, name, options, &)
  super(name, options, &)
  @owner = owner
end