mirror of
https://github.com/Ride-The-Lightning/RTL.git
synced 2025-02-18 20:53:52 +01:00
8 lines
273 B
JavaScript
8 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;
|