2022-01-01 13:38:12 +00:00
|
|
|
# Copyright (C) 2012-2022 Zammad Foundation, https://zammad-foundation.org/
|
2021-06-01 12:20:20 +00:00
|
|
|
|
2021-05-25 12:30:12 +00:00
|
|
|
class Sequencer
|
|
|
|
class Unit
|
|
|
|
module Import
|
|
|
|
module Freshdesk
|
|
|
|
class ModelClass < Sequencer::Unit::Common::Provider::Named
|
2022-04-14 05:43:04 +00:00
|
|
|
prepend ::Sequencer::Unit::Import::Common::Model::Mixin::Skip::Action
|
|
|
|
|
|
|
|
skip_action :skipped, :failed
|
2021-05-25 12:30:12 +00:00
|
|
|
|
|
|
|
uses :object
|
|
|
|
|
|
|
|
MAP = {
|
|
|
|
'Company' => ::Organization,
|
|
|
|
'Agent' => ::User,
|
|
|
|
'Contact' => ::User,
|
|
|
|
'Group' => ::Group,
|
|
|
|
'Ticket' => ::Ticket,
|
|
|
|
'Conversation' => ::Ticket::Article,
|
|
|
|
}.freeze
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def model_class
|
|
|
|
MAP[object]
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|