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

25 lines
528 B
Ruby
Raw Normal View History

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