From c4ee4257d6a995090a72f25a684f2f9371908d90 Mon Sep 17 00:00:00 2001 From: mustard Date: Thu, 28 Apr 2022 14:30:31 +0000 Subject: [PATCH] Fix gateway referrer won't set default IDE --- components/gitpod-db/src/typeorm/user-db-impl.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/components/gitpod-db/src/typeorm/user-db-impl.ts b/components/gitpod-db/src/typeorm/user-db-impl.ts index ccdd8402fb67e6..0c2d518efd2f3f 100644 --- a/components/gitpod-db/src/typeorm/user-db-impl.ts +++ b/components/gitpod-db/src/typeorm/user-db-impl.ts @@ -101,7 +101,9 @@ export class TypeORMUserDBImpl implements UserDB { creationDate: new Date().toISOString(), identities: [], additionalData: { - ideSettings: {}, + // Please DO NOT add ideSettings prop, it'll broke onboarding of JetBrains Gateway + // If you want to do it, ping IDE team + // ideSettings: {}, emailNotificationSettings: { allowsChangelogMail: true, allowsDevXMail: true,