fixes prefill adding name in session and jwt (#2167)

pull/2168/head
Agusti Fernandez 2022-03-16 16:11:21 +01:00 committed by GitHub
parent e21813ba96
commit e94594d0b1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -181,6 +181,7 @@ export default NextAuth({
if (account && account.type === "credentials") {
return {
id: user.id,
name: user.name,
username: user.username,
email: user.email,
};
@ -213,6 +214,7 @@ export default NextAuth({
return {
id: existingUser.id,
name: existingUser.name,
username: existingUser.username,
email: existingUser.email,
};
@ -226,6 +228,7 @@ export default NextAuth({
user: {
...session.user,
id: token.id as number,
name: token.name,
username: token.username as string,
},
};