From 7f8d83efb284a68eefb37b3971ab1ce3af064a57 Mon Sep 17 00:00:00 2001 From: oat_dev Date: Wed, 27 Mar 2024 11:14:13 +0700 Subject: [PATCH] =?UTF-8?q?=E0=B8=97=E0=B8=B0=E0=B9=80=E0=B8=9A=E0=B8=B5?= =?UTF-8?q?=E0=B8=A2=E0=B8=99=E0=B8=9B=E0=B8=A3=E0=B8=B0=E0=B8=A7=E0=B8=B1?= =?UTF-8?q?=E0=B8=95=E0=B8=B4:=20=E0=B9=80=E0=B8=9E=E0=B8=B4=E0=B9=88?= =?UTF-8?q?=E0=B8=A1api=20=E0=B8=9B=E0=B8=A3=E0=B8=B0=E0=B8=A7=E0=B8=B1?= =?UTF-8?q?=E0=B8=95=E0=B8=B4=E0=B9=80=E0=B8=9B=E0=B8=A5=E0=B8=B5=E0=B9=88?= =?UTF-8?q?=E0=B8=A2=E0=B8=99=E0=B8=8A=E0=B8=B7=E0=B9=88=E0=B8=AD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/registry/api.registry.ts | 9 +++++++++ 1 file changed, 9 insertions(+) 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}`, };