Add LDAP auth module (#6226)

This commit is contained in:
Julian Dax
2019-11-25 17:03:38 +01:00
committed by Diamond Lewis
parent cf26434b31
commit 4435154cf9
6 changed files with 452 additions and 0 deletions

View File

@@ -23,6 +23,7 @@ const weibo = require('./weibo');
const oauth2 = require('./oauth2');
const phantauth = require('./phantauth');
const microsoft = require('./microsoft');
const ldap = require('./ldap');
const anonymous = {
validateAuthData: () => {
@@ -57,6 +58,7 @@ const providers = {
weibo,
phantauth,
microsoft,
ldap,
};
function authDataValidator(adapter, appIds, options) {