From b137a41a8f237c2d79ee0d0364b1328ce769e4e8 Mon Sep 17 00:00:00 2001 From: dandds Date: Fri, 28 Sep 2018 15:46:34 -0400 Subject: [PATCH] logout should redirect to root, not home --- atst/routes/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/atst/routes/__init__.py b/atst/routes/__init__.py index fd5b213a..c3536ae5 100644 --- a/atst/routes/__init__.py +++ b/atst/routes/__init__.py @@ -84,7 +84,7 @@ def login_redirect(): @bp.route("/logout") def logout(): _logout() - return redirect(url_for(".home")) + return redirect(url_for(".root")) @bp.route("/activity-history")