WIP jordan

This commit is contained in:
Jordan Weingarten
2026-04-16 11:11:44 -05:00
parent ff2d7b18b5
commit 67482f6629
163 changed files with 50627 additions and 728 deletions

15
app/types/roles.ts Normal file
View File

@@ -0,0 +1,15 @@
export type SegurosPermissionKey =
| 'profile'
| 'portfolio'
| 'layers'
| 'tasks'
| 'billing'
| 'analytics'
| 'support'
export type RoleRow = {
id: number
description: string
active: boolean
seguros: Record<SegurosPermissionKey, boolean>
}