mirror of
https://github.com/toeverything/AFFiNE.git
synced 2025-01-02 14:27:19 +03:00
feat: add removeMember api
This commit is contained in:
parent
e2293ffc44
commit
1da1293789
@ -130,6 +130,19 @@ export class Business {
|
||||
void 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* remove the new member to the workspace
|
||||
* @param {string} workspaceId ID of workspace.
|
||||
* @param {string} memberId ID of member
|
||||
*/
|
||||
removeMember(workspaceId: string, memberId: string) {
|
||||
void 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* A new member click the invite link, finish to join the workspace
|
||||
* @param {string} inviteCode token for invitation.
|
||||
*/
|
||||
async acceptInvitation(invitingCode: string) {
|
||||
const dc = await this._getDc();
|
||||
dc.apis.acceptInviting({ invitingCode });
|
||||
|
Loading…
Reference in New Issue
Block a user