forked from rDrama/rDrama
1
0
Fork 0

dont reveal votes on polls in ghost threads

master
Aevann1 2022-07-15 01:21:52 +02:00
parent 2945ee844d
commit 09da483bac
1 changed files with 4 additions and 0 deletions

View File

@ -47,6 +47,8 @@ def option_votes(option_id, v):
if not option: abort(404)
if option.post.ghost: abort(403)
ups = g.db.query(SubmissionOptionVote).filter_by(option_id=option_id).order_by(SubmissionOptionVote.created_utc).all()
return render_template("poll_votes.html",
@ -97,6 +99,8 @@ def option_votes_comment(option_id, v):
if not option: abort(404)
if option.comment.ghost: abort(403)
ups = g.db.query(CommentOptionVote).filter_by(option_id=option_id).order_by(CommentOptionVote.created_utc).all()
return render_template("poll_votes.html",