auth log3

This commit is contained in:
DirkSchlossmacher 2023-11-13 09:32:52 +01:00
parent 84950c7413
commit 2374c09915

View File

@ -78,7 +78,7 @@ export const authOptions: NextAuthOptions = {
// Extend session object here
session.user = {
...session.user,
id: token.sub,
id: userId,
};
return session;