trabajo-afectivo/lib/sequencer/sequence/import/zendesk/organization.rb

27 lines
850 B
Ruby
Raw Normal View History

class Sequencer
class Sequence
module Import
module Zendesk
class Organization < Sequencer::Sequence::Base
def self.sequence
[
'Common::ModelClass::Organization',
'Import::Zendesk::Organization::Mapping',
'Import::Zendesk::Organization::CustomFields',
'Import::Common::Model::Attributes::AddByIds',
'Import::Common::Model::FindBy::Name',
'Import::Common::Model::Update',
'Import::Common::Model::Create',
'Import::Common::Model::Save',
'Import::Common::Model::Statistics::Diff::ModelKey',
'Import::Common::ImportJob::Statistics::Update',
'Import::Common::ImportJob::Statistics::Store',
]
end
end
end
end
end
end