1
0
Fork 0
mirror of synced 2024-07-04 22:11:23 +12:00

Merge branch 'master' into pc/bug-fixing

This commit is contained in:
Peter Clement 2024-03-07 10:31:30 +00:00 committed by GitHub
commit 9989b2717d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
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