2022-01-01 13:38:12 +00:00
|
|
|
# Copyright (C) 2012-2022 Zammad Foundation, https://zammad-foundation.org/
|
2021-10-20 09:43:35 +00:00
|
|
|
|
|
|
|
class Sequencer
|
|
|
|
class Unit
|
|
|
|
module Import
|
|
|
|
module Kayako
|
|
|
|
class Resources < Sequencer::Unit::Common::Provider::Named
|
|
|
|
include ::Sequencer::Unit::Import::Common::Model::Mixin::HandleFailure
|
|
|
|
|
|
|
|
uses :response
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def resources
|
|
|
|
body = JSON.parse(response.body)
|
|
|
|
|
|
|
|
body['data']
|
|
|
|
rescue => e
|
|
|
|
logger.error "Won't be continued, because no response is available."
|
|
|
|
handle_failure(e)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|