From f42ea1a8a62732eeadb79eea58be2a479041b911 Mon Sep 17 00:00:00 2001 From: Alma Date: Fri, 11 Apr 2025 11:49:35 +0200 Subject: [PATCH] widget chat 9 --- app/api/auth/[...nextauth]/route.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/api/auth/[...nextauth]/route.ts b/app/api/auth/[...nextauth]/route.ts index 8c3a7539..c251137c 100644 --- a/app/api/auth/[...nextauth]/route.ts +++ b/app/api/auth/[...nextauth]/route.ts @@ -96,6 +96,8 @@ export const authOptions: NextAuthOptions = { username: (profile as any).preferred_username ?? profile.email?.split('@')[0] ?? '', first_name: (profile as any).given_name ?? '', last_name: (profile as any).family_name ?? '', + rocketChatToken: '', + rocketChatUserId: '', }; try {