mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-13 21:05:19 +00:00
fix(server): send declined email (#9188)
This commit is contained in:
@@ -5,7 +5,10 @@ import { Flatten, Payload } from './types';
|
||||
export interface WorkspaceEvents {
|
||||
members: {
|
||||
reviewRequested: Payload<{ inviteId: string }>;
|
||||
requestDeclined: Payload<{ inviteId: string }>;
|
||||
requestDeclined: Payload<{
|
||||
userId: User['id'];
|
||||
workspaceId: Workspace['id'];
|
||||
}>;
|
||||
requestApproved: Payload<{ inviteId: string }>;
|
||||
updated: Payload<{ workspaceId: Workspace['id']; count: number }>;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user