feat: implement user management features including user deletion and role-based access

This commit is contained in:
2025-07-23 14:55:21 +02:00
parent 584473ba41
commit 4fed3d96f6
10 changed files with 248 additions and 86 deletions

View File

@@ -8,6 +8,7 @@ export interface User {
email: string;
password: string;
created: string;
role: string;
}
export function useUsers(): User[] {