Module: Another::Ldap::Proxy::Backend
- Defined in:
- lib/another/ldap/proxy/backend.rb,
lib/another/ldap/proxy/backend/ldap.rb
Defined Under Namespace
Classes: Ldap
Class Method Summary collapse
- .new_backend(backend_conf, logger: nil) ⇒ Object
- .new_backend_ldap(backend_conf, logger: nil) ⇒ Object
Class Method Details
.new_backend(backend_conf, logger: nil) ⇒ Object
10 11 12 13 |
# File 'lib/another/ldap/proxy/backend.rb', line 10 def new_backend(backend_conf, logger: nil) backend_type = backend_conf[:type] send("new_backend_#{backend_type}", backend_conf, logger: logger) end |