Method: Outbound.identify

Defined in:
lib/outbound.rb

.identify(user_id, info = {}) ⇒ Object



48
49
50
51
52
53
54
55
# File 'lib/outbound.rb', line 48

def Outbound.identify(user_id, info={})
  if @ob == nil
    res = Result.new Outbound::ERROR_INIT, false
    @logger.error res.error
    return res
  end
  return @ob.identify(user_id, info)
end