This commit is contained in:
Aevann1 2021-11-02 13:33:41 -07:00
commit ce3be3bcb2
15 changed files with 41 additions and 41 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)