2
0
mirror of https://github.com/Ride-The-Lightning/RTL synced 2024-11-17 15:29:30 +00:00
RTL/routes/RTLConf.js

11 lines
393 B
JavaScript
Raw Normal View History

2019-01-01 16:26:51 +00:00
const RTLConfController = require("../controllers/RTLConf");
const express = require("express");
const router = express.Router();
const authCheck = require("./authCheck");
router.get("/rtlconf", RTLConfController.getRTLConfig);
2019-01-01 16:26:51 +00:00
router.post("/", authCheck, RTLConfController.updateUISettings);
router.get("/config/:nodeType", authCheck, RTLConfController.getConfig);
2019-01-01 16:26:51 +00:00
module.exports = router;