add a public help route

This commit is contained in:
Andrew Croce 2018-09-24 16:09:20 -04:00
parent 962e7d98ee
commit 5868630e1f
2 changed files with 4 additions and 0 deletions

View File

@ -8,6 +8,7 @@ UNPROTECTED_ROUTES = [
"dev.login_dev",
"atst.login_redirect",
"atst.unauthorized",
"atst.helpdocs",
"static",
]

View File

@ -13,6 +13,9 @@ bp = Blueprint("atst", __name__)
@bp.route("/")
def root():
return render_template("root.html")
@bp.route("/help")
def helpdocs():
return render_template("help/index.html")
@bp.route("/home")