forked from rDrama/rDrama
1
0
Fork 0
master
Aevann1 2021-09-13 20:52:09 +02:00
parent a21d04df25
commit a4323121d0
1 changed files with 4 additions and 7 deletions

View File

@ -27,13 +27,10 @@ SITE_NAME = environ.get("SITE_NAME", "").strip()
@app.get("/admin/refund") @app.get("/admin/refund")
@admin_level_required(6) @admin_level_required(6)
def refund(v): def refund(v):
posts=g.db.query(Submission.upvotes + Submission.downvotes - 1).options(lazyload('*')).filter_by(author_id = 1).all() #for u in g.db.query(User).all():
print(posts) sex = g.db.query(func.sum(Submission.upvotes + Submission.downvotes + Comment.upvotes + Comment.downvotes - 2)).options(lazyload('*')).filter_by(author_id = 1, is_banned = False, deleted_utc = 0).scalar()
# for u in g.db.query(User).all(): print(sex)
# posts=sum([x[0]+x[1]-1 for x in g.db.query(Submission.upvotes, Submission.downvotes).options(lazyload('*')).filter_by(author_id = u.id, is_banned = False, deleted_utc = 0).all()]) #g.db.add(u)
# comments=sum([x[0]+x[1]-1 for x in g.db.query(Comment.upvotes, Comment.downvotes).options(lazyload('*')).filter_by(author_id = u.id, is_banned = False, deleted_utc = 0).all()])
# u.truecoins = int(posts+comments)
# g.db.add(u)
return "sex" return "sex"
@app.post("/@<username>/revert_actions") @app.post("/@<username>/revert_actions")