mirror of
https://github.com/Ride-The-Lightning/RTL
synced 2024-10-31 09:20:27 +00:00
11 lines
393 B
JavaScript
11 lines
393 B
JavaScript
const RTLConfController = require("../controllers/RTLConf");
|
|
const express = require("express");
|
|
const router = express.Router();
|
|
const authCheck = require("./authCheck");
|
|
|
|
router.get("/lndconfig", authCheck, RTLConfController.getLNDConfig);
|
|
router.get("/uisettings", RTLConfController.getUISettings);
|
|
router.post("/", authCheck, RTLConfController.updateUISettings);
|
|
|
|
module.exports = router;
|