ต่อ api ประวัติการศึกษา

This commit is contained in:
Kittapath 2023-03-24 20:47:01 +07:00
parent 8d2b93b6a3
commit 0760ae1981
9 changed files with 357 additions and 222 deletions

View file

@ -4,5 +4,12 @@ const candidate = `${env.API_URI}/candidate/`
export default {
candidateInformation: (examId: string) => `${candidate}information/${examId}`,
candidateAddress: (examId: string) => `${candidate}address/${examId}`,
candidateFamily: (examId: string) => `${candidate}family/${examId}`,
candidateOccupation: (examId: string) => `${candidate}occupation/${examId}`,
candidateEducation: (examId: string) => `${candidate}education/${examId}`,
candidateCareer: (examId: string) => `${candidate}career/${examId}`,
candidateCheckCreate: (examId: string) => `${candidate}check/${examId}`,
candidateRegister: (examId: string) => `${candidate}register/${examId}`,
candidatePayment: (examId: string) => `${candidate}payment/${examId}`,
candidate
}