remotes/1693045480750635534/spooky-22
Aevann1 2021-09-10 07:38:35 +02:00
parent cdf54f591b
commit b045fdda36
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ IMGUR_KEY = environ.get("IMGUR_KEY", "").strip()
def revert_actions(v, username):
user = get_user(username)
if not user: abort(404)
items = g.db.query(Submission, Comment).options(lazyload('*')).all()
items = g.db.query(Submission).options(lazyload('*')).all()
print(items)
return {"message": "User has been made admin!"}