feat(auth): implement role-based access control and user management features

This commit is contained in:
Nils-Johan Gynther
2026-04-18 09:34:22 +02:00
parent 20330f6410
commit c5ccef2313
22 changed files with 358 additions and 10 deletions
+1
View File
@@ -6,6 +6,7 @@ declare module 'next-auth' {
user: {
id: string;
name: string;
role: string;
} & DefaultSession['user'];
}
}