feat(react/settings): port OAuth settings

This commit is contained in:
Elian Doran
2025-08-19 10:50:58 +03:00
parent cfb3607052
commit 44825af0c0
2 changed files with 52 additions and 7 deletions

View File

@@ -125,3 +125,10 @@ export interface TOTPRecoveryKeysResponse {
keysExist?: boolean;
usedRecoveryCodes?: string[];
}
export interface OAuthStatus {
enabled: boolean;
name?: string;
email?: string;
missingVars?: string[];
}