API จัดลำดับการแสดงผล

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2025-01-07 11:07:24 +07:00
parent 33e521facc
commit 460f133b3e
2 changed files with 55 additions and 25 deletions

View file

@ -76,6 +76,9 @@ export default {
// ประวัติการศึกษา
profileNewEducation: (type: string) => `${registryNew}${type}/educations`,
profileNewEducationSort: (type: string) =>
`${registryNew}${type}/educations/sort`,
profileNewEducationByProfileId: (profileId: string, type: string) =>
`${registryNew}${type}/educations/${profileId}`,
profileNewEducationByEducationId: (educationId: string, type: string) =>
@ -202,5 +205,6 @@ export default {
developMentPlan: `${registryNew}/development`,
requestInformationbyType:(type:string,id:string)=>`${registryNew}/request-edit/${type}/${id}`
requestInformationbyType: (type: string, id: string) =>
`${registryNew}/request-edit/${type}/${id}`,
};