Add employee page

Signed-off-by: Sacha Al Himdani <sacha@getprobo.com>
This commit is contained in:
Sacha Al Himdani
2025-11-18 22:56:22 +01:00
parent 2f4cfd7ac0
commit 975d16c623
44 changed files with 5731 additions and 1842 deletions

View File

@@ -2,6 +2,7 @@ export const Role = {
OWNER: "OWNER",
ADMIN: "ADMIN",
VIEWER: "VIEWER",
EMPLOYEE: "EMPLOYEE",
} as const
export type Role = (typeof Role)[keyof typeof Role];
@@ -16,4 +17,4 @@ export function getAssignableRoles(currentRole: Role): Role[] {
}
return [];
}
}