From 926d8b981b515a23b721c4fd441f910aff2ce0b0 Mon Sep 17 00:00:00 2001 From: binwiederhier Date: Sun, 16 Nov 2025 13:35:43 -0500 Subject: [PATCH] Set "require_login: false" for dev --- web/public/config.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web/public/config.js b/web/public/config.js index 5b904cd5..4d3bda32 100644 --- a/web/public/config.js +++ b/web/public/config.js @@ -9,7 +9,7 @@ var config = { base_url: window.location.origin, // Change to test against a different server app_root: "/", enable_login: true, - require_login: true, + require_login: false, enable_signup: true, enable_payments: false, enable_reservations: true, @@ -18,5 +18,5 @@ var config = { enable_web_push: true, billing_contact: "", web_push_public_key: "", - disallowed_topics: ["docs", "static", "file", "app", "account", "settings", "signup", "login", "v1"], + disallowed_topics: ["docs", "static", "file", "app", "account", "settings", "signup", "login", "v1"] };