add a public help route
This commit is contained in:
parent
962e7d98ee
commit
5868630e1f
@ -8,6 +8,7 @@ UNPROTECTED_ROUTES = [
|
|||||||
"dev.login_dev",
|
"dev.login_dev",
|
||||||
"atst.login_redirect",
|
"atst.login_redirect",
|
||||||
"atst.unauthorized",
|
"atst.unauthorized",
|
||||||
|
"atst.helpdocs",
|
||||||
"static",
|
"static",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
@ -13,6 +13,9 @@ bp = Blueprint("atst", __name__)
|
|||||||
@bp.route("/")
|
@bp.route("/")
|
||||||
def root():
|
def root():
|
||||||
return render_template("root.html")
|
return render_template("root.html")
|
||||||
|
@bp.route("/help")
|
||||||
|
def helpdocs():
|
||||||
|
return render_template("help/index.html")
|
||||||
|
|
||||||
|
|
||||||
@bp.route("/home")
|
@bp.route("/home")
|
||||||
|
Loading…
x
Reference in New Issue
Block a user