feat: add accept invite

This commit is contained in:
MingLiang Wang
2023-01-11 21:35:40 +08:00
parent 932f5f02c4
commit 49eff042fe
3 changed files with 27 additions and 0 deletions

View File

@@ -233,4 +233,14 @@ export class BaseProvider {
workspaceId;
return Promise.resolve([]);
}
/**
* accept invitation
* @param {string} inviteCode
* @returns
*/
public async acceptInvitation(inviteCode: string): Promise<void> {
inviteCode;
return;
}
}