feat: Read auth secret from secrets object.

This commit is contained in:
Sam 2022-05-12 17:27:46 +02:00
parent a16e074ca8
commit f266fbfa7c
No known key found for this signature in database
GPG Key ID: D004126FCD1A6DF0

View File

@ -26,11 +26,12 @@ let initialized = false;
function getNextAuthConfig({ authJson, plugins }) {
if (initialized) return nextAuthConfig;
const secrets = getSecretsFromEnv();
const operatorsParser = new NodeParser({
operators: { _secret },
payload: {},
secrets: getSecretsFromEnv(),
secrets,
user: {},
});
@ -46,12 +47,7 @@ function getNextAuthConfig({ authJson, plugins }) {
nextAuthConfig.callbacks = createCallbacks({ authConfig, plugins });
nextAuthConfig.providers = createProviders({ authConfig, plugins });
// We can either configure this using auth config,
// then the user configures this using the _secret operator
// -> authConfig.secret = evaluatedAuthConfig.secret;
// or we can create a fixed env var/secret name that we read.
// -> authConfig.secret = secrets.LOWDEFY_AUTH_SECRET;
nextAuthConfig.secret = 'TODO: Configure secret';
nextAuthConfig.secret = secrets.AUTH_SECRET;
nextAuthConfig.theme = authConfig.theme;
initialized = true;