2021-06-01 12:20:20 +00:00
|
|
|
# Copyright (C) 2012-2021 Zammad Foundation, http://zammad-foundation.org/
|
|
|
|
|
2017-11-30 12:44:41 +00:00
|
|
|
class Sequencer
|
|
|
|
class Unit
|
|
|
|
module Ldap
|
2017-12-20 15:08:37 +00:00
|
|
|
class Config < Sequencer::Unit::Common::Provider::Fallback
|
|
|
|
|
2017-11-30 12:44:41 +00:00
|
|
|
provides :ldap_config
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2017-12-20 15:08:37 +00:00
|
|
|
def ldap_config
|
2017-11-30 12:44:41 +00:00
|
|
|
::Import::Ldap.config
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|