1
0
forked from apxtri/apxtri
This commit is contained in:
philc 2024-04-02 21:46:11 +02:00
parent 033232eba1
commit 81917cedaf

View File

@ -59,7 +59,7 @@ router.get("/schema/:tribe/:objectname", checkHeaders, isAuthenticated, (req, re
res.status(retschema.status).json(retschema); res.status(retschema.status).json(retschema);
}); });
/** /**
* @api {get} /adminapi/odmdb/options/:tribe/objects/options/:optionname - Get option list in header language * @api {get} /adminapi/odmdb/options/:tribe/objects/option/:optionname - Get option list in header language
* @apiGroup Odmdb * @apiGroup Odmdb
* @apiName getOption * @apiName getOption
* @apiDescription Get schema in the requested language if login have accessright. object $ref or $id are replace by the relevant schema, option $ref are replace by enum list of authorised value * @apiDescription Get schema in the requested language if login have accessright. object $ref or $id are replace by the relevant schema, option $ref are replace by enum list of authorised value
@ -71,7 +71,7 @@ router.get("/schema/:tribe/:objectname", checkHeaders, isAuthenticated, (req, re
* HTTP/1.1 200 OK * HTTP/1.1 200 OK
* {"status":200, "ref":"Odmdb", "msg":"schema", "data":{schema,objectname,lg} * {"status":200, "ref":"Odmdb", "msg":"schema", "data":{schema,objectname,lg}
*/ */
router.get("/options/:tribe/objects/options/:optionname", checkHeaders, isAuthenticated, (req, res) => { router.get("/options/:tribe/objects/option/:optionname", checkHeaders, isAuthenticated, (req, res) => {
const objectPathname=`../../${req.params.tribe}/objects/options/${req.params.optionname}_${req.header.xlang}.json` const objectPathname=`../../${req.params.tribe}/objects/options/${req.params.optionname}_${req.header.xlang}.json`
if (fs.existsSync(objectPathname)){ if (fs.existsSync(objectPathname)){
res.status(200).json({status:200,ref:"Odmdb",msg:"optionfind",data:fs.readJsonSync(objectPathname)}) res.status(200).json({status:200,ref:"Odmdb",msg:"optionfind",data:fs.readJsonSync(objectPathname)})