folder_contacts.rb 727 B

123456789101112131415161718192021222324
  1. # Copyright (C) 2012-2022 Zammad Foundation, https://zammad-foundation.org/
  2. class Sequencer
  3. class Sequence
  4. module Import
  5. module Exchange
  6. class FolderContacts < Sequencer::Sequence::Base
  7. def self.sequence
  8. [
  9. 'Import::Exchange::FolderContacts::DryRunPayload',
  10. 'Exchange::Connection',
  11. 'Import::Exchange::FolderContacts::FolderIds',
  12. 'Import::Exchange::FolderContacts::Total',
  13. 'Import::Common::ImportJob::Statistics::Update',
  14. 'Import::Common::ImportJob::Statistics::Store',
  15. 'Import::Exchange::FolderContacts::SubSequence',
  16. ]
  17. end
  18. end
  19. end
  20. end
  21. end
  22. end