fix: แก้ path api

This commit is contained in:
setthawutttty 2025-09-15 12:51:39 +07:00
parent 0c0dffe34b
commit d3d95718c9
2 changed files with 14 additions and 12 deletions

View file

@ -5,13 +5,14 @@ import env from "../index";
const message = `${env.API_URI}/message`; const message = `${env.API_URI}/message`;
const reply = `${env.API_URI}/placement/noti`; const reply = `${env.API_URI}/placement/noti`;
const placementMessage = `${env.API_URI}/placement/message`;
export default { export default {
msgNotificate: `${message}/my-notifications`, msgNotificate: `${placementMessage}/my-notifications`,
msgInbox: `${message}/my-inboxes`, msgInbox: `${placementMessage}/my-inboxes`,
msgId: (id: string) => `${message}/my-notifications/${id}`, msgId: (id: string) => `${placementMessage}/my-notifications/${id}`,
msgNoread: () => `${message}/my-notifications/noread`, msgNoread: () => `${placementMessage}/my-notifications/noread`,
msgInboxDelete: (id: string) => `${message}/my-inboxes/${id}`, msgInboxDelete: (id: string) => `${placementMessage}/my-inboxes/${id}`,
replyMessage: (id: string) => `${reply}/${id}`, replyMessage: (id: string) => `${reply}/${id}`,
msgNotiAdmin: `${env.API_URI}/org/profile/noti-admin`, msgNotiAdmin: `${env.API_URI}/org/profile/noti-admin`,

View file

@ -4,20 +4,21 @@
*/ */
import env from "../index"; import env from "../index";
const holiday = `${env.API_URI}/metadata/holiday/`; const holiday = `${env.API_URI}/metadata/holiday/`;
const leaveHoliday = `${env.API_URI}/leave/metadata/holiday/`;
export default { export default {
/** /**
* api * api
*/ */
listHolidayHistoryAdd: (category: string) => listHolidayHistoryAdd: (category: string) =>
`${holiday}range/add/${category}`, `${leaveHoliday}range/add/${category}`,
listHolidayHistoryEdit: (category: string) => listHolidayHistoryEdit: (category: string) =>
`${holiday}range/edit/${category}`, `${leaveHoliday}range/edit/${category}`,
listHolidayHistoryDelete: (category: string) => listHolidayHistoryDelete: (category: string) =>
`${holiday}range/delete/${category}`, `${leaveHoliday}range/delete/${category}`,
listHolidayHistoryYear: (year: number) => `${holiday}${year}`, listHolidayHistoryYear: (year: number) => `${leaveHoliday}${year}`,
listHolidayHistoryYearMonth: (year: number, month: number) => listHolidayHistoryYearMonth: (year: number, month: number) =>
`${holiday}${year}/${month}`, `${leaveHoliday}${year}/${month}`,
listHolidayCopy: `${holiday}copy`, listHolidayCopy: `${leaveHoliday}copy`,
summaryHolidayHistoryYear: (year: number) => `${holiday}summary/${year}`, summaryHolidayHistoryYear: (year: number) => `${leaveHoliday}summary/${year}`,
}; };