From fddb8d529400c8074be1af0da07fc21c7ee0d8ba Mon Sep 17 00:00:00 2001 From: Aevann1 Date: Mon, 13 Sep 2021 21:01:07 +0200 Subject: [PATCH] fd --- files/routes/admin.py | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/files/routes/admin.py b/files/routes/admin.py index 2ab8039bd5..26b16c8e1e 100644 --- a/files/routes/admin.py +++ b/files/routes/admin.py @@ -24,18 +24,6 @@ from files.helpers.discord import add_role IMGUR_KEY = environ.get("IMGUR_KEY", "").strip() SITE_NAME = environ.get("SITE_NAME", "").strip() -@app.get("/admin/refund") -@admin_level_required(6) -def refund(v): - for u in g.db.query(User).all(): - posts = g.db.query(func.sum(Submission.upvotes + Submission.downvotes - 1)).options(lazyload('*')).filter_by(author_id = u.id, is_banned = False, deleted_utc = 0).scalar() - comments = g.db.query(func.sum(Comment.upvotes + Comment.downvotes - 1)).options(lazyload('*')).filter_by(author_id = u.id, is_banned = False, deleted_utc = 0).scalar() - if not posts: posts = 0 - if not comments: comments = 0 - u.truecoins = posts+comments - g.db.add(u) - return "sex" - @app.post("/@/revert_actions") @admin_level_required(6) def revert_actions(v, username):