Started implementing the roles permissions

This commit is contained in:
Tiago Ribeiro
2024-10-10 19:13:18 +01:00
parent c43ab9a911
commit 55204e2ce1
67 changed files with 1357 additions and 1134 deletions

View File

@@ -8,6 +8,7 @@ export interface Role {
entityID: string;
permissions: string[];
label: string;
isDefault?: boolean
}
export interface EntityWithRoles extends Entity {