mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-09-22 06:00:56 +02:00

* 🔧 chore: npm install passport-ldapauth * ✨ feat(auth): add ldap authentication support * chore: merge conflict fix --------- Co-authored-by: Danny Avila <danny@librechat.ai>
19 lines
532 B
JavaScript
19 lines
532 B
JavaScript
const passportLogin = require('./localStrategy');
|
|
const googleLogin = require('./googleStrategy');
|
|
const githubLogin = require('./githubStrategy');
|
|
const discordLogin = require('./discordStrategy');
|
|
const facebookLogin = require('./facebookStrategy');
|
|
const setupOpenId = require('./openidStrategy');
|
|
const jwtLogin = require('./jwtStrategy');
|
|
const ldapLogin = require('./ldapStrategy');
|
|
|
|
module.exports = {
|
|
passportLogin,
|
|
googleLogin,
|
|
githubLogin,
|
|
discordLogin,
|
|
jwtLogin,
|
|
facebookLogin,
|
|
setupOpenId,
|
|
ldapLogin,
|
|
};
|