revert: revert

This commit is contained in:
Phan Huy Tran 2025-02-26 11:06:40 +01:00
parent aef0f09d09
commit aa6ec4397f

View file

@ -21,11 +21,10 @@ export class UserService {
});
}
public async getOrCreateUser(userProfile: KeycloakProfile): Promise<User | undefined | null> {
public async getOrCreateUser(userProfile: KeycloakProfile) {
if (userProfile.id == null) {
return null;
return;
}
return await this.getUser(userProfile.id)
.toPromise()
.then(async (user) => {