summaryrefslogtreecommitdiff
path: root/lib/web/auth/ldap/index.js
diff options
context:
space:
mode:
authorChristoph (Sheogorath) Kern2018-06-30 17:05:59 +0200
committerGitHub2018-06-30 17:05:59 +0200
commit501b46f30451f61ecfcd79a121f55d2f3084048a (patch)
treed46ee1d16e0ace9a6d1f3b46f9337dd241f19972 /lib/web/auth/ldap/index.js
parent453cb19fff2cd0a63f61faae6585f676e1271f81 (diff)
parentf30cc3044ac8b7f70689444cbb076be4b2cfcaac (diff)
Merge pull request #871 from SISheogorath/update/dependencies
Update dependencies
Diffstat (limited to 'lib/web/auth/ldap/index.js')
-rw-r--r--lib/web/auth/ldap/index.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/web/auth/ldap/index.js b/lib/web/auth/ldap/index.js
index ab1cb4cd..8d71c18e 100644
--- a/lib/web/auth/ldap/index.js
+++ b/lib/web/auth/ldap/index.js
@@ -15,7 +15,7 @@ let ldapAuth = module.exports = Router()
passport.use(new LDAPStrategy({
server: {
url: config.ldap.url || null,
- bindDn: config.ldap.bindDn || null,
+ bindDN: config.ldap.bindDn || null,
bindCredentials: config.ldap.bindCredentials || null,
searchBase: config.ldap.searchBase || null,
searchFilter: config.ldap.searchFilter || null,