From c46f785229401d9099e129672dc85aa38edc6d15 Mon Sep 17 00:00:00 2001 From: TLSM Date: Fri, 17 Jun 2022 16:38:30 -0400 Subject: [PATCH] Loosen auth requirement on /directory. --- files/routes/static.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/routes/static.py b/files/routes/static.py index 93f3fc3a73..14e252928e 100644 --- a/files/routes/static.py +++ b/files/routes/static.py @@ -170,7 +170,7 @@ def log_item(id, v): return render_template("log.html", v=v, actions=[action], next_exists=False, page=1, action=action, admins=admins, types=types) @app.get("/directory") -@auth_required +@auth_desired def static_megathread_index(v): return render_template("megathread_index.html", v=v)