Make user role type more representative of reality.
This commit is contained in:
parent
55420e6cc0
commit
8b22d6b08b
|
@ -24,7 +24,7 @@ export interface GroupUser {
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface UserGroupRoles {
|
export interface UserGroupRoles {
|
||||||
[key: string]: string
|
[key: string]: string | undefined
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface SearchGroupRequest {}
|
export interface SearchGroupRequest {}
|
||||||
|
|
|
@ -48,7 +48,7 @@ export interface GroupAddedOnboardingEvent extends BaseEvent {
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface GroupPermissionsEditedEvent extends BaseEvent {
|
export interface GroupPermissionsEditedEvent extends BaseEvent {
|
||||||
permissions: Record<string, string>
|
permissions: Record<string, string | undefined>
|
||||||
groupId: string
|
groupId: string
|
||||||
audited: {
|
audited: {
|
||||||
name: string
|
name: string
|
||||||
|
|
Loading…
Reference in New Issue