diff --git a/src/api/registry/api.registry.ts b/src/api/registry/api.registry.ts index 215bffd4e..cb5fc4a92 100644 --- a/src/api/registry/api.registry.ts +++ b/src/api/registry/api.registry.ts @@ -142,4 +142,13 @@ profileNewLeaveType:()=>`${env.API_URI}/leave/type`, profileSalaryNew: `${env.API_URI}/org/profileSalary`, profileSalaryNewById: (id: string) => `${env.API_URI}/org/profileSalary/${id}`, + + // ประวัติการเปลี่ยนชื่อ-นามสกุล +profileNewChangeName: `${registryNew}changeName`, +profileNewChangeNameByProfileId: (profileId: string) => + `${registryNew}changeName/${profileId}`, +profileNewChangeNameByChangeNameId: (changeNameId: string) => + `${registryNew}changeName/${changeNameId}`, +profileNewChangeNameHisByChangeNameId: (changeNameId: string) => + `${registryNew}changeName/history/${changeNameId}`, };