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,7 +117,7 @@ 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)
g.db.flush()