trabajo-afectivo/lib/sequencer/unit/kayako/connected.rb

24 lines
515 B
Ruby
Raw Permalink Normal View History

2022-01-01 13:38:12 +00:00
# Copyright (C) 2012-2022 Zammad Foundation, https://zammad-foundation.org/
class Sequencer
class Unit
module Kayako
class Connected < Sequencer::Unit::Common::Provider::Named
extend ::Sequencer::Unit::Import::Kayako::Requester
private
def connected
response = self.class.perform_request(
api_path: 'me',
)
response.is_a?(Net::HTTPOK)
rescue => e
logger.error e
nil
end
end
end
end
end