From 90c3c3006414626ea5a93678b5d398f99d8b4630 Mon Sep 17 00:00:00 2001 From: Patrick Smith Date: Tue, 30 Oct 2018 15:44:21 -0400 Subject: [PATCH] Add logout route to "unprotected" routes The logout route doesn't strictly require the user to be logged in and was causing errors with the new profile completeness enforcement. --- atst/domain/auth.py | 1 + 1 file changed, 1 insertion(+) diff --git a/atst/domain/auth.py b/atst/domain/auth.py index 5ac56fc9..10db8273 100644 --- a/atst/domain/auth.py +++ b/atst/domain/auth.py @@ -7,6 +7,7 @@ UNPROTECTED_ROUTES = [ "atst.root", "dev.login_dev", "atst.login_redirect", + "atst.logout", "atst.unauthorized", "atst.helpdocs", "static",