From 97b14f19f089c2e68f4d88ffbf8b58f1a1633dd2 Mon Sep 17 00:00:00 2001 From: Laurin Wolf Date: Tue, 19 Apr 2022 11:20:16 +0200 Subject: [PATCH] =?UTF-8?q?fix(auth):=F0=9F=90=9Bexplicitly=20set=20linkAc?= =?UTF-8?q?count=20user=20values=20,=20#10?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/builder/pages/api/auth/adapter.ts | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/apps/builder/pages/api/auth/adapter.ts b/apps/builder/pages/api/auth/adapter.ts index 1d26e2888..fbfe938fe 100644 --- a/apps/builder/pages/api/auth/adapter.ts +++ b/apps/builder/pages/api/auth/adapter.ts @@ -42,7 +42,22 @@ export function CustomAdapter(p: PrismaClient): Adapter { }, updateUser: (data) => p.user.update({ where: { id: data.id }, data }), deleteUser: (id) => p.user.delete({ where: { id } }), - linkAccount: (data) => p.account.create({ data }) as any, + linkAccount: (data) => { + return p.account.create({ + data: { + provider: data.provider, + type: data.type, + providerAccountId: data.providerAccountId, + access_token: data.access_token, + token_type: data.token_type, + expires_at: data.expires_at, + refresh_token: data.refresh_token, + scope: data.scope, + id_token: data.id_token, + userId: data.userId, + } + }) as any + }, unlinkAccount: (provider_providerAccountId) => p.account.delete({ where: { provider_providerAccountId } }) as any, async getSessionAndUser(sessionToken) {