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
@@ -45,7 +45,7 @@
if (storedActivities.length > 0) {
activityIcon.textContent = storedActivities.map((a) => a.icon).join(" ");
} else {
fetch("appsettings.json")
fetch("/api/settings", { cache: "no-store" })
.then((res) => res.json())
.then((settings) => {
const match = (settings.activities || []).find((a) => a.name === selectedActivity);