add a public help route
This commit is contained in:
parent
962e7d98ee
commit
5868630e1f
@ -8,6 +8,7 @@ UNPROTECTED_ROUTES = [
|
||||
"dev.login_dev",
|
||||
"atst.login_redirect",
|
||||
"atst.unauthorized",
|
||||
"atst.helpdocs",
|
||||
"static",
|
||||
]
|
||||
|
||||
|
@ -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")
|
||||
|
Loading…
x
Reference in New Issue
Block a user