aboutsummaryrefslogtreecommitdiffstats
path: root/pysite
diff options
context:
space:
mode:
Diffstat (limited to 'pysite')
-rw-r--r--pysite/route_manager.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pysite/route_manager.py b/pysite/route_manager.py
index 03587fb0..ee86c531 100644
--- a/pysite/route_manager.py
+++ b/pysite/route_manager.py
@@ -84,7 +84,7 @@ class RouteManager:
self.app.before_request(self.https_fixing_hook) # Try to fix HTTPS issues
- CSRF.init_app(self.app) # Set up CSRF protection
+ # CSRF.init_app(self.app) # Set up CSRF protection
self.app.config["WTF_CSRF_CHECK_DEFAULT "] = False # We only want to protect specific routes
def https_fixing_hook(self):