test
This commit is contained in:
parent
ed4d51400c
commit
5295d06686
@ -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;
|
||||
},
|
||||
},
|
||||
});
|
||||
|
@ -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(),
|
||||
|
Loading…
x
Reference in New Issue
Block a user