24 lines
514 B
Ruby
24 lines
514 B
Ruby
|
# Copyright (C) 2012-2021 Zammad Foundation, http://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
|