24 lines
671 B
Ruby
24 lines
671 B
Ruby
# Copyright (C) 2012-2021 Zammad Foundation, http://zammad-foundation.org/
|
|
|
|
class Sequencer
|
|
class Sequence
|
|
module Import
|
|
module Freshdesk
|
|
class GenericObject < Sequencer::Sequence::Base
|
|
|
|
def self.sequence
|
|
[
|
|
'Import::Freshdesk::Request',
|
|
'Import::Freshdesk::Resources',
|
|
'Import::Freshdesk::ModelClass',
|
|
'Import::Freshdesk::ObjectCount',
|
|
'Import::Common::ImportJob::Statistics::Update',
|
|
'Import::Common::ImportJob::Statistics::Store',
|
|
'Import::Freshdesk::Perform',
|
|
]
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|