re-disable /voted/comments

pull/105/head
Aevann 2023-01-29 15:47:13 +02:00
parent 57157ac85e
commit a01ba9234d
1 changed files with 1 additions and 0 deletions

View File

@ -175,6 +175,7 @@ def user_voted_posts(v:User, username):
@limiter.limit(DEFAULT_RATELIMIT, key_func=get_ID)
@auth_required
def user_voted_comments(v:User, username):
abort(403, "Temporarily disabled!")
return user_voted(v, username, Comment, CommentVote, "userpage/voted_comments.html", True)
@app.get("/banned")