feat: add twoFactorEnabled field to User type definition

This commit is contained in:
Mathis HERRIOT
2026-01-29 16:09:13 +01:00
parent e2146f4502
commit 27ea6fa413

View File

@@ -8,6 +8,7 @@ export interface User {
bio?: string;
role?: "user" | "admin" | "moderator";
status?: "active" | "verification" | "suspended" | "pending" | "deleted";
twoFactorEnabled?: boolean;
createdAt: string;
}