This commit is contained in:
Aevann1 2021-11-02 17:17:16 +02:00
parent ed722b5ffe
commit af774abad1
11 changed files with 39 additions and 39 deletions

View file

@ -245,7 +245,7 @@ def admin_app_id_comments(v, aid):
@admin_level_required(3)
def admin_apps_list(v):
apps = g.db.query(OauthApp).all()
apps = g.db.query(OauthApp).options(lazyload('*')).all()
return render_template("admin/apps.html", v=v, apps=apps)