57 lines
2.5 KiB
TypeScript
57 lines
2.5 KiB
TypeScript
import env from "../index";
|
|
|
|
const registryNew = `${env.API_URI}/org/profile/`;
|
|
|
|
export default {
|
|
registryNew,
|
|
registryNewByProfileId: (profileId : string) => `${registryNew}${profileId}`,
|
|
|
|
// เครื่องราชฯ
|
|
profileNewInsign: `${registryNew}insignia`,
|
|
profileNewInsignByProfileId: (profileId: string) =>
|
|
`${registryNew}insignia/${profileId}`,
|
|
profileNewInsignById: (dataId: string) => `${registryNew}insignia/${dataId}`,
|
|
profileNewInsignHisById: (dataId: string) =>
|
|
`${registryNew}insignia/history/${dataId}`,
|
|
|
|
// ประกาศเกียรติคุณ
|
|
profileNewHonor: `${registryNew}honor`,
|
|
profileNewHonorByProfileId: (profileId: string) =>
|
|
`${registryNew}honor/${profileId}`,
|
|
profileNewHonorById: (dataId: string) => `${registryNew}honor/${dataId}`,
|
|
profileNewHonorHisById: (dataId: string) => `${registryNew}honor/history/${dataId}`,
|
|
|
|
// ผลการประเมินการปฏิบัติราชการ
|
|
profileNewAssessments: `${registryNew}assessments`,
|
|
profileNewAssessmentsByProfileId: (profileId: string) =>
|
|
`${registryNew}assessments/${profileId}`,
|
|
profileNewAssessmentsById: (dataId: string) => `${registryNew}assessments/${dataId}`,
|
|
profileNewAssessmentsHisById: (dataId: string) => `${registryNew}assessments/history/${dataId}`,
|
|
|
|
// การฝึกอบรม
|
|
profileNewTraining: `${registryNew}training`,
|
|
profileNewTrainingByProfileId: (profileId: string) =>
|
|
`${registryNew}training/${profileId}`,
|
|
profileNewTrainingByTrainingId: (trainingId: string) =>
|
|
`${registryNew}training/${trainingId}`,
|
|
profileNewTrainingHisByTrainingId: (trainingId: string) =>
|
|
`${registryNew}training/history/${trainingId}`,
|
|
|
|
// ประวัติการศึกษา
|
|
profileNewEducation: `${registryNew}educations`,
|
|
profileNewEducationByProfileId: (profileId: string) =>
|
|
`${registryNew}educations/${profileId}`,
|
|
profileNewEducationByEducationId: (educationId: string) =>
|
|
`${registryNew}educations/${educationId}`,
|
|
profileNewEducationHisByEducationId: (educationsId: string) =>
|
|
`${registryNew}educations/history/${educationsId}`,
|
|
|
|
// ความสามารถพิเศษ
|
|
profileNewAbility: `${registryNew}ability`,
|
|
profileNewAbilityByProfileId: (profileId: string) =>
|
|
`${registryNew}ability/${profileId}`,
|
|
profileNewAbilityByAbilityId: (educationId: string) =>
|
|
`${registryNew}ability/${educationId}`,
|
|
profileNewAbilityHisByAbilityId: (abilityId: string) =>
|
|
`${registryNew}ability/history/${abilityId}`,
|
|
};
|