1
0
Fork 0
mirror of synced 2024-07-04 05:50:57 +12:00

Make user role type more representative of reality.

This commit is contained in:
Sam Rose 2024-03-07 09:33:02 +00:00
parent 55420e6cc0
commit 8b22d6b08b
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

View file

@ -24,7 +24,7 @@ export interface GroupUser {
}
export interface UserGroupRoles {
[key: string]: string
[key: string]: string | undefined
}
export interface SearchGroupRequest {}

View file

@ -48,7 +48,7 @@ export interface GroupAddedOnboardingEvent extends BaseEvent {
}
export interface GroupPermissionsEditedEvent extends BaseEvent {
permissions: Record<string, string>
permissions: Record<string, string | undefined>
groupId: string
audited: {
name: string