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

* feat: add SAML authentication * refactor: change SAML icon * refactor: resolve SAML metadata paths using paths.js * test: add samlStrategy tests * fix: update setupSaml import * test: add SAML settings tests in config.spec.js * test: add client tests * refactor: improve SAML button label and fallback localization * feat: allow only one authentication method OpenID or SAML at a time * doc: add SAML configuration sample to docker-compose.override * fix: require SAML_SESSION_SECRET to enable SAML * feat: update samlStrategy * test: update samle tests * feat: add SAML login button label to translations and remove default value * fix: update SAML cert file binding * chore: update override example with SAML cert volume * fix: update SAML session handling with Redis backend --------- Co-authored-by: Ruben Talstra <RubenTalstra1211@outlook.com>
26 lines
768 B
JavaScript
26 lines
768 B
JavaScript
const appleLogin = require('./appleStrategy');
|
|
const passportLogin = require('./localStrategy');
|
|
const googleLogin = require('./googleStrategy');
|
|
const githubLogin = require('./githubStrategy');
|
|
const discordLogin = require('./discordStrategy');
|
|
const facebookLogin = require('./facebookStrategy');
|
|
const { setupOpenId, getOpenIdConfig } = require('./openidStrategy');
|
|
const jwtLogin = require('./jwtStrategy');
|
|
const ldapLogin = require('./ldapStrategy');
|
|
const { setupSaml } = require('./samlStrategy');
|
|
const openIdJwtLogin = require('./openIdJwtStrategy');
|
|
|
|
module.exports = {
|
|
appleLogin,
|
|
passportLogin,
|
|
googleLogin,
|
|
githubLogin,
|
|
discordLogin,
|
|
jwtLogin,
|
|
facebookLogin,
|
|
setupOpenId,
|
|
getOpenIdConfig,
|
|
ldapLogin,
|
|
setupSaml,
|
|
openIdJwtLogin,
|
|
};
|