remotes/1693045480750635534/spooky-22
Aevann1 2021-08-30 11:09:32 +02:00
parent 4ecfa7e88f
commit 1c91ec2dfd
1 changed files with 5 additions and 5 deletions

View File

@ -117,13 +117,13 @@ def admin_app_approve(v, aid):
def admin_app_revoke(v, aid):
app = g.db.query(OauthApp).filter_by(id=aid).first()
if app.id:
for auth in g.db.query(ClientAuth).filter_by(oauth_client=app.id).all(): g.db.delete(auth)
for auth in g.db.query(ClientAuth).filter_by(oauth_client=app.id).all(): g.db.delete(auth)
g.db.flush()
send_notification(NOTIFICATIONS_ACCOUNT, app.author, f"Your application `{app.app_name}` has been revoked.")
g.db.flush()
send_notification(NOTIFICATIONS_ACCOUNT, app.author, f"Your application `{app.app_name}` has been revoked.")
g.db.delete(app)
g.db.delete(app)
return {"message": f"App revoked"}