fix some additional login handling bugs

This commit is contained in:
dandds
2018-08-06 14:39:10 -04:00
parent 6c4e27655d
commit 2fd34194b3
3 changed files with 4 additions and 4 deletions

View File

@@ -3,7 +3,7 @@ from flask import g, redirect, url_for, session, request
from atst.domain.users import Users
UNPROTECTED_ROUTES = ["atst.root", "atst.login_dev", "atst.login_redirect", "atst.unauthorized", "static"]
UNPROTECTED_ROUTES = ["atst.root", "dev.login_dev", "atst.login_redirect", "atst.unauthorized", "static"]
def apply_authentication(app):
@app.before_request