mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-13 21:05:19 +00:00
feat(core): impl invitation link (#11181)
feat(core): add invitee to getInviteInfoQuery feat(core): enable invitation link refactor(core): replace AcceptInviteService to InvitationService
This commit is contained in:
@@ -11,5 +11,11 @@ query getInviteInfo($inviteId: String!) {
|
||||
avatarUrl
|
||||
}
|
||||
status
|
||||
invitee {
|
||||
id
|
||||
name
|
||||
email
|
||||
avatarUrl
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -776,6 +776,12 @@ export const getInviteInfoQuery = {
|
||||
avatarUrl
|
||||
}
|
||||
status
|
||||
invitee {
|
||||
id
|
||||
name
|
||||
email
|
||||
avatarUrl
|
||||
}
|
||||
}
|
||||
}`,
|
||||
};
|
||||
|
||||
@@ -3242,6 +3242,13 @@ export type GetInviteInfoQuery = {
|
||||
name: string;
|
||||
avatarUrl: string | null;
|
||||
};
|
||||
invitee: {
|
||||
__typename?: 'WorkspaceUserType';
|
||||
id: string;
|
||||
name: string;
|
||||
email: string;
|
||||
avatarUrl: string | null;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user