Method: HaveAPI::Authentication::Token::ActionConfig#handle

Defined in:
lib/haveapi/authentication/token/action_config.rb

#handle {|request, result| ... } ⇒ Object

Handle the action

Yield Parameters:

Yield Returns:



32
33
34
35
36
37
38
# File 'lib/haveapi/authentication/token/action_config.rb', line 32

def handle(&block)
  if block && check!(:handle)
    @handle = block
  else
    @handle
  end
end