This commit is contained in:
AdisakKanthawilang 2024-06-14 10:02:20 +07:00
parent 210d1dc7ca
commit ba628063b5

View file

@ -191,9 +191,10 @@ export class KeycloakController extends Controller {
id: userId,
},
});
if (profile) {
profile.keycloak = "";
const null_:any = null;
profile.keycloak = null_;
await this.profileRepo.save(profile);
}
}