trabajo-afectivo/lib/sequencer/unit/import/kayako/resources.rb

27 lines
620 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 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