ATTEMPTED to fix my databse stuff, security etc, and a Issue Cait had

This commit is contained in:
2026-06-26 18:37:28 +02:00
parent fe09d15359
commit bccba1434b
7 changed files with 57 additions and 10 deletions
+2 -1
View File
@@ -4,12 +4,13 @@ export type LeadStatus =
| "pending"
| "closed"
| "ignored";
export type UserRole = "super_admin" | "admin" | "sales";
export type UserRole = "super_admin" | "admin" | "sales" | "dev";
export interface User {
id: string;
name: string;
email: string;
phone?: string;
role: UserRole;
active: boolean;
avatar: string;