chore(workspaces): perform workspace project role update via events (#2980)
* chore(workspaces): perform workspace project role update via events * chore(workspaces): commented * fix(workspaces): transactions in events * fix(workspaces): transaction limits
This commit is contained in:
@@ -20,7 +20,10 @@ type WorkspaceCreatedPayload = Workspace & {
|
||||
}
|
||||
type WorkspaceUpdatedPayload = Workspace
|
||||
type WorkspaceRoleDeletedPayload = Pick<WorkspaceAcl, 'userId' | 'workspaceId' | 'role'>
|
||||
type WorkspaceRoleUpdatedPayload = Pick<WorkspaceAcl, 'userId' | 'workspaceId' | 'role'>
|
||||
type WorkspaceRoleUpdatedPayload = Pick<
|
||||
WorkspaceAcl,
|
||||
'userId' | 'workspaceId' | 'role'
|
||||
> & { flags?: { skipProjectRoleUpdatesFor: string[] } }
|
||||
type WorkspaceJoinedFromDiscoveryPayload = {
|
||||
userId: string
|
||||
workspaceId: string
|
||||
|
||||
Reference in New Issue
Block a user