26 lines
620 B
Ruby
26 lines
620 B
Ruby
# Copyright (C) 2012-2022 Zammad Foundation, https://zammad-foundation.org/
|
|
|
|
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
|