ldap-authentication
Advanced tools
Comparing version 2.1.2 to 2.1.3
{ | ||
"name": "ldap-authentication", | ||
"version": "2.1.2", | ||
"version": "2.1.3", | ||
"description": "A simple async nodejs library for LDAP user authentication", | ||
@@ -27,4 +27,4 @@ "main": "index.js", | ||
"devDependencies": { | ||
"jest": "^24.9.0" | ||
"jest": "^25.1.0" | ||
} | ||
} |
@@ -45,3 +45,3 @@ # A Simple node Library that Authenticates a User Against an LDAP/AD Server | ||
let authenticated = await authenticate({ | ||
ldapOptions: {url: 'ldap://ldap.forumsys.com'}, | ||
ldapOpts: {url: 'ldap://ldap.forumsys.com'}, | ||
userDn: 'uid=gauss,dc=example,dc=com', | ||
@@ -56,3 +56,3 @@ userPassword: 'password' | ||
let authenticated = await authenticate({ | ||
ldapOptions: {url: 'ldap://ldap.forumsys.com'}, | ||
ldapOpts: {url: 'ldap://ldap.forumsys.com'}, | ||
userDn: 'uid=gauss,dc=example,dc=com', | ||
@@ -59,0 +59,0 @@ userPassword: 'password', |
17573