fixing error put change name

This commit is contained in:
Warunee Tamkoo 2024-07-11 00:18:03 +07:00
parent 1fde4cd005
commit 7cbf4e171b

View file

@ -200,12 +200,13 @@ export class ProfileChangeNameController extends Controller {
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();
}