hrms-recruit/src/api/exam/api.metadata.ts
2023-03-21 17:24:01 +07:00

15 lines
445 B
TypeScript

import env from '../index'
const dashbord = `${env.API_URI}/dashbord/`
const prefix = `${env.API_URI}/prefix/`
const religion = `${env.API_URI}/religion/`
const relationship = `${env.API_URI}/relationship/`
const educationLevel = `${env.API_URI}/education-level/`
export default {
countDashbordSubHistory: (type: number) => `${dashbord}${type}`,
countDashbordHistory: `${dashbord}`,
prefix,
religion,
relationship,
educationLevel
}