diff --git a/files/routes/admin.py b/files/routes/admin.py index f87c02e59a..f80214eb48 100644 --- a/files/routes/admin.py +++ b/files/routes/admin.py @@ -99,6 +99,11 @@ def flagged_comments(v): v=v, standalone=True) +@app.get("/admin/test") +@limiter.limit("1/day") +def admin_test(v): + return "fug" + @app.get("/admin") @admin_level_required(3) def admin_home(v):