ต่อ Api prefix /educationLevel

This commit is contained in:
AnandaTon 2023-03-21 17:24:01 +07:00
parent 579f56dbcd
commit c289ed17ad
4 changed files with 134 additions and 14 deletions

View file

@ -1,7 +1,15 @@
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}`
countDashbordHistory: `${dashbord}`,
prefix,
religion,
relationship,
educationLevel
}