Add the Support page.

This commit is contained in:
Ben Rog-Wilhelm 2022-09-18 10:56:57 -05:00 committed by Ben Rog-Wilhelm
parent 5d349deab2
commit 41e5f38d19
5 changed files with 34 additions and 1 deletions

View file

@ -52,6 +52,11 @@ def sidebar(v):
def rules(v):
return render_template('rules.html', v=v)
@app.get('/support')
@auth_desired
def support(v):
return render_template('support.html', v=v)
@app.get("/stats")
@auth_required
@cache.memoize(timeout=86400, make_name=make_name)