diff --git a/src/controllers/ProfileChangeNameController.ts b/src/controllers/ProfileChangeNameController.ts index b2a3f163..f963c424 100644 --- a/src/controllers/ProfileChangeNameController.ts +++ b/src/controllers/ProfileChangeNameController.ts @@ -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(); }