ทะเบียนประวัติ: เพิ่มapi ประวัติเปลี่ยนชื่อ

This commit is contained in:
oat_dev 2024-03-27 11:14:13 +07:00
parent 954321ab9c
commit 7f8d83efb2

View file

@ -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}`,
};