Add protected date management admin

This commit is contained in:
2026-09-17 15:32:33 +02:00
parent 253b65d976
commit 097e72d364
14 changed files with 1100 additions and 67 deletions
+1 -1
View File
@@ -38,7 +38,7 @@
}
Promise.all([
fetch("appsettings.json?t=" + Date.now()).then((res) => res.json()),
fetch("/api/settings?t=" + Date.now(), { cache: "no-store" }).then((res) => res.json()),
fetch("/api/booked-dates?t=" + Date.now(), { cache: "no-store" })
.then((res) => (res.ok ? res.json() : []))
.catch(() => []),