From 9e94b5a242cc3971c4cb1af1f0e6318008fbd3c0 Mon Sep 17 00:00:00 2001 From: Cliff Hill Date: Fri, 7 Jun 2024 16:10:18 -0400 Subject: [PATCH] saabling CSRF in dev because it breaks all the tests. Signed-off-by: Cliff Hill --- app/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/config.py b/app/config.py index 8922506f1..fc358549d 100644 --- a/app/config.py +++ b/app/config.py @@ -118,7 +118,7 @@ class Development(Config): class Test(Development): TESTING = True - WTF_CSRF_ENABLED = True + WTF_CSRF_ENABLED = False ASSET_DOMAIN = "static.example.com" ASSET_PATH = "https://static.example.com/"