Admin navigation permissions

This commit is contained in:
2025-12-01 23:57:26 -05:00
parent 9ac885da56
commit 9fe18f6b1a
5 changed files with 64 additions and 14 deletions

6
shared/types/roles.ts Normal file
View File

@@ -0,0 +1,6 @@
export interface Role {
id: number;
name: string;
color?: string;
description?: string;
}