mirror of
https://github.com/zammad/zammad
synced 2026-05-24 09:48:36 +00:00
13 lines
284 B
Ruby
13 lines
284 B
Ruby
# Copyright (C) 2012-2026 Zammad Foundation, https://zammad-foundation.org/
|
|
|
|
class Sequencer::Unit::Ldap::Connection < Sequencer::Unit::Common::Provider::Fallback
|
|
|
|
uses :ldap_config
|
|
provides :ldap_connection
|
|
|
|
private
|
|
|
|
def ldap_connection
|
|
::Ldap.new(ldap_config)
|
|
end
|
|
end
|