24 lines
657 B
Ruby
24 lines
657 B
Ruby
|
class Sequencer
|
||
|
class Sequence
|
||
|
module Import
|
||
|
module Freshdesk
|
||
|
class Conversation < Sequencer::Sequence::Base
|
||
|
|
||
|
def self.sequence
|
||
|
[
|
||
|
'Common::ModelClass::Ticket::Article',
|
||
|
'Import::Freshdesk::Conversation::Mapping',
|
||
|
'Import::Freshdesk::Conversation::InlineImages',
|
||
|
'Import::Common::Model::Update',
|
||
|
'Import::Common::Model::Create',
|
||
|
'Import::Common::Model::Save',
|
||
|
'Import::Freshdesk::MapId',
|
||
|
'Import::Freshdesk::Conversation::Attachments',
|
||
|
]
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|