From eee0dfce6a0c3e4fb2590f544d1aef8591b35fd9 Mon Sep 17 00:00:00 2001 From: Aevann1 Date: Tue, 20 Dec 2022 02:42:39 +0200 Subject: [PATCH] restore /stats --- files/routes/static.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/files/routes/static.py b/files/routes/static.py index ddacf8696..056826d53 100644 --- a/files/routes/static.py +++ b/files/routes/static.py @@ -81,11 +81,11 @@ def sidebar(v:Optional[User]): return render_template('sidebar.html', v=v) -# @app.get("/stats") -# @auth_required -# def participation_stats(v:User): -# if v.client: return stats_cached() -# return render_template("stats.html", v=v, title="Content Statistics", data=stats_cached()) +@app.get("/stats") +@auth_required +def participation_stats(v:User): + if v.client: return stats_cached() + return render_template("stats.html", v=v, title="Content Statistics", data=stats_cached()) @cache.memoize(timeout=86400) def stats_cached():