Add two factor (#632)

This commit is contained in:
Saeed Vaziry
2025-06-27 01:07:33 +02:00
committed by GitHub
parent 73c836bfe7
commit 194143d7ef
12 changed files with 388 additions and 49 deletions

View File

@ -10,6 +10,7 @@ export interface User {
updated_at: string;
timezone: string;
projects?: Project[];
two_factor_enabled: boolean;
role: string;
[key: string]: unknown; // This allows for additional properties...
}