trabajo-afectivo/lib/sequencer/sequence/import/freshdesk/generic_object.rb

25 lines
671 B
Ruby
Raw Permalink Normal View History

# Copyright (C) 2012-2021 Zammad Foundation, http://zammad-foundation.org/
2021-05-25 12:30:12 +00:00
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