base router and permissions

This commit is contained in:
Julian Krauser 2025-05-29 10:52:05 +02:00
parent 7883bb7d7f
commit 0684605093
11 changed files with 196 additions and 12 deletions

View file

@ -14,6 +14,10 @@ router.get("/calendar", async (req, res) => {
await getCalendarItemsByTypes(req, res);
});
router.post("/reportdamage", async (req, res) => {
res.send("TODO");
});
router.get("/configuration", async (req, res) => {
await getApplicationConfig(req, res);
});