2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-07-18 18:56:31 +00:00

chore(backend): bump allauth version (#9714)

* bump allauth

* add trust

* add device trust handling

* fix style

* Update api_version.py

---------

Co-authored-by: Oliver <oliver.henry.walters@gmail.com>
This commit is contained in:
Matthias Mair
2025-06-05 05:27:52 +02:00
committed by GitHub
parent ee67c4f099
commit 71abd489ae
7 changed files with 64 additions and 16 deletions

View File

@@ -30,6 +30,7 @@ export enum ApiEndpoints {
auth_recovery = 'auth/v1/account/authenticators/recovery-codes',
auth_mfa_reauthenticate = 'auth/v1/auth/2fa/reauthenticate',
auth_totp = 'auth/v1/account/authenticators/totp',
auth_trust = 'auth/v1/auth/2fa/trust',
auth_reauthenticate = 'auth/v1/auth/reauthenticate',
auth_email = 'auth/v1/account/email',
auth_email_verify = 'auth/v1/auth/email/verify',

View File

@@ -13,7 +13,8 @@ export enum FlowEnum {
ProviderToken = 'provider_token',
MfaAuthenticate = 'mfa_authenticate',
Reauthenticate = 'reauthenticate',
MfaReauthenticate = 'mfa_reauthenticate'
MfaReauthenticate = 'mfa_reauthenticate',
MfaTrust = 'mfa_trust'
}
export interface Flow {