trabajo-afectivo/lib/sequencer/sequence/import/exchange/available_folders.rb
2022-01-01 14:38:12 +01:00

24 lines
540 B
Ruby

# Copyright (C) 2012-2022 Zammad Foundation, https://zammad-foundation.org/
class Sequencer
class Sequence
module Import
module Exchange
class AvailableFolders < Sequencer::Sequence::Base
def self.expecting
[:folders]
end
def self.sequence
[
'Exchange::Connection',
'Exchange::Folders::IdPathMap',
'Import::Exchange::AttributeMapper::AvailableFolders',
]
end
end
end
end
end
end