From 5295d06686eb1f31a678332b74ab35e4bfc9c01b Mon Sep 17 00:00:00 2001 From: gibbyb Date: Thu, 16 Jan 2025 06:18:46 -0600 Subject: [PATCH] test --- src/auth.ts | 7 +++++++ src/env.js | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/src/auth.ts b/src/auth.ts index 2ace80a..5bfa170 100755 --- a/src/auth.ts +++ b/src/auth.ts @@ -15,4 +15,11 @@ export const { handlers, auth, signIn, signOut } = NextAuth({ issuer: process.env.AUTH_AUTHENTIK_ISSUER, }), ], + debug: true, + callbacks: { + async signIn({ user, account, profile, email, credentials }) { + console.log('signIn', { user, account, profile, email, credentials }); + return true; + }, + }, }); diff --git a/src/env.js b/src/env.js index aa8404d..382ab5d 100755 --- a/src/env.js +++ b/src/env.js @@ -12,7 +12,7 @@ export const env = createEnv({ .enum(['development', 'test', 'production']) .default('development'), API_KEY: z.string(), - AUTH_TRUST_HOST: z.boolean().default(false), + AUTH_TRUST_HOST: z.boolean().default(true), AUTH_SECRET: z.string(), AUTH_MICROSOFT_ENTRA_ID_ID: z.string(), AUTH_MICROSOFT_ENTRA_ID_SECRET: z.string(),