hrms-mgt/src/api/05_placement/api.placement.ts

8 lines
270 B
TypeScript
Raw Normal View History

2023-07-04 09:41:24 +07:00
import env from "../index"
const placement = `${env.API_URI}/Placement/placement`
2023-06-01 12:54:58 +07:00
2023-07-04 09:41:24 +07:00
export default {
2023-07-05 10:00:36 +07:00
MainDetail: (year:number) => `${placement}/exam/${year}`,
2023-07-04 09:41:24 +07:00
yearOptions: () => `${placement}/fiscal`,
redirectToPage: (examId:string) => `${placement}/pass/${examId}`,
}