File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -72,7 +72,8 @@ export class TypeORMUserDBImpl implements UserDB {
7272 id : uuidv4 ( ) ,
7373 creationDate : new Date ( ) . toISOString ( ) ,
7474 identities : [ ] ,
75- allowsMarketingCommunication : false
75+ allowsMarketingCommunication : false ,
76+ additionalData : { ideSettings : { defaultIde : 'code' } } ,
7677 } ;
7778 await this . storeUser ( user ) ;
7879 return user ;
Original file line number Diff line number Diff line change @@ -112,7 +112,7 @@ export class UserService {
112112 }
113113
114114 private cachedIsFirstUser : boolean | undefined = undefined ;
115- public async createUser ( { identity, token, userUpdate } : CreateUserParams ) : Promise < User > {
115+ public async createUser ( { identity, token, userUpdate } : CreateUserParams ) : Promise < User > {
116116 log . debug ( 'Creating new user.' , { identity, 'login-flow' : true } ) ;
117117
118118 const prevIsFirstUser = this . cachedIsFirstUser ;
You can’t perform that action at this time.
0 commit comments