This commit is contained in:
Warunee Tamkoo 2024-07-10 23:36:18 +07:00
parent a7a8f47da0
commit 1fde4cd005

View file

@ -147,12 +147,13 @@ export class ProfileChangeNameController extends Controller {
profile.prefix = body.prefix ?? profile.prefix;
await this.profileRepository.save(profile);
if (profile != null && profile.keycloak != null) {
const result = await updateName(profile.keycloak, profile.firstName, profile.lastName);
if (!result) {
throw new Error(result.errorMessage);
}
}
// ปิดไว้ก่อนเพราะ error ต้องใช้ keycloak ที่มีสิทธิ์ในการ update
// if (profile != null && profile.keycloak != null) {
// const result = await updateName(profile.keycloak, profile.firstName, profile.lastName);
// if (!result) {
// throw new Error(result.errorMessage);
// }
// }
return new HttpSuccess(data.id);
}
@ -205,7 +206,7 @@ export class ProfileChangeNameController extends Controller {
throw new Error(result.errorMessage);
}
}
return new HttpSuccess();
}