fix vendoring

Signed-off-by: Christian Richter <crichter@owncloud.com>
This commit is contained in:
Christian Richter
2023-08-23 09:45:36 +02:00
parent d4eed2f15d
commit 717eb646bd

View File

@@ -107,12 +107,12 @@ func NewIdentityManager(bs bootstrap.Bootstrap) (identity.Manager, error) {
identifierBackend, identifierErr := ldap.NewLDAPIdentifierBackend(
config.Config,
tlsConfig,
os.Getenv("OCIS_LDAP_URI"),
os.Getenv("OCIS_LDAP_BIND_DN"),
os.Getenv("LDAP_BIND_PASSWORD"),
os.Getenv("OCIS_LDAP_USER_BASE_DN"),
os.Getenv("OCIS_LDAP_SCOPE"),
os.Getenv("OCIS_LDAP_FILTER"),
os.Getenv("LDAP_URI"),
os.Getenv("LDAP_BINDDN"),
os.Getenv("LDAP_BINDPW"),
os.Getenv("LDAP_BASEDN"),
os.Getenv("LDAP_SCOPE"),
os.Getenv("LDAP_FILTER"),
subMapping,
attributeMapping,
)