Sfoglia il codice sorgente

fix: Account.query => db.session.query(Account) (#17667)

tags/1.2.0
crazywoola 6 mesi fa
parent
commit
eb8584613b
Nessun account collegato all'indirizzo email del committer
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1
    1
      api/controllers/service_api/wraps.py

+ 1
- 1
api/controllers/service_api/wraps.py Vedi File

@@ -69,7 +69,7 @@ def validate_app_token(view: Optional[Callable] = None, *, fetch_user_arg: Optio
) # TODO: only owner information is required, so only one is returned.
if tenant_account_join:
tenant, ta = tenant_account_join
account = Account.query.filter_by(id=ta.account_id).first()
account = db.session.query(Account).filter(Account.id == ta.account_id).first()
# Login admin
if account:
account.current_tenant = tenant

Loading…
Annulla
Salva