Fix: Mobile responsiveness audit (modals, views, sidebar) & Critical bug fixes (registration, orphan tasks)
continuous-integration/drone/push Build is passing

This commit is contained in:
2025-12-17 15:06:13 +01:00
parent 2579df0b89
commit 877d0c897e
11 changed files with 34 additions and 26 deletions
+1 -2
View File
@@ -105,8 +105,7 @@ export async function registerRoutes(app: Express): Promise<Server> {
});
app.get("/api/settings/public", async (req, res) => {
const regEnabled = "true"; // Force enabled for testing
// const regEnabled = await storage.getSystemSettings("registration_enabled");
const regEnabled = await storage.getSystemSettings("registration_enabled");
// Default to true if not set, or specifically check for "false"
res.json({ registration_enabled: regEnabled !== "false" });
});