mirror of
https://github.com/zammad/zammad
synced 2026-05-24 09:48:36 +00:00
21 lines
582 B
Ruby
21 lines
582 B
Ruby
# Copyright (C) 2012-2026 Zammad Foundation, https://zammad-foundation.org/
|
|
|
|
class Sequencer::Sequence::Import::Ldap::Users < Sequencer::Sequence::Base
|
|
def self.expecting
|
|
[:found_ids]
|
|
end
|
|
|
|
def self.sequence
|
|
[
|
|
'Common::ModelClass::User',
|
|
'Ldap::ExternalSyncSource',
|
|
'Ldap::Config',
|
|
'Ldap::Connection',
|
|
'Import::Ldap::Users::UserRoles',
|
|
'Import::Ldap::Users::Total',
|
|
'Import::Common::ImportJob::Statistics::Update',
|
|
'Import::Common::ImportJob::Statistics::Store',
|
|
'Import::Ldap::Users::SubSequence',
|
|
]
|
|
end
|
|
end
|