Add 2FA TOTP code editor to browser extension (#1391)

This commit is contained in:
Leendert de Borst
2025-11-24 10:12:04 +01:00
committed by Leendert de Borst
parent dccbda7515
commit a92bbef41a
6 changed files with 474 additions and 10 deletions

View File

@@ -13,4 +13,7 @@ export type TotpCode = {
/** The credential ID this TOTP code belongs to */
CredentialId: string;
/** Whether the TOTP code has been deleted (soft delete) */
IsDeleted?: boolean;
}