2021-06-01 12:20:20 +00:00
|
|
|
# Copyright (C) 2012-2021 Zammad Foundation, http://zammad-foundation.org/
|
|
|
|
|
2021-05-25 12:30:12 +00:00
|
|
|
class Sequencer
|
|
|
|
class Unit
|
|
|
|
module Import
|
|
|
|
module Freshdesk
|
|
|
|
module Ticket
|
|
|
|
class Conversations < Sequencer::Unit::Import::Freshdesk::SubSequence::Generic
|
|
|
|
prepend ::Sequencer::Unit::Import::Common::Model::Mixin::Skip::Action
|
|
|
|
|
|
|
|
optional :action
|
|
|
|
|
|
|
|
skip_action :skipped, :failed
|
|
|
|
|
|
|
|
uses :resource
|
|
|
|
|
|
|
|
def object
|
|
|
|
'Conversation'
|
|
|
|
end
|
|
|
|
|
|
|
|
def sequence_name
|
|
|
|
'Sequencer::Sequence::Import::Freshdesk::Conversations'.freeze
|
|
|
|
end
|
|
|
|
|
|
|
|
def request_params
|
|
|
|
super.merge(
|
|
|
|
ticket: resource,
|
|
|
|
)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|