mirror of
https://github.com/Ride-The-Lightning/RTL
synced 2024-10-31 09:20:27 +00:00
9 lines
273 B
JavaScript
9 lines
273 B
JavaScript
const UISettingsController = require("../controllers/UISettings");
|
|
const express = require("express");
|
|
const router = express.Router();
|
|
|
|
router.get("/", UISettingsController.getUISettings);
|
|
router.post("/", UISettingsController.updateUISettings);
|
|
|
|
module.exports = router;
|