hrms-recruit/src/api/exam/api.metadata.ts

16 lines
445 B
TypeScript
Raw Normal View History

import env from '../index'
const dashbord = `${env.API_URI}/dashbord/`
2023-03-21 17:24:01 +07:00
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}`,
2023-03-21 17:24:01 +07:00
countDashbordHistory: `${dashbord}`,
prefix,
religion,
relationship,
educationLevel
}