mirror of
https://github.com/hexedtech/codemp-vscode.git
synced 2024-11-21 23:14:49 +01:00
chore: show invite information message when inviting user to workspace
This commit is contained in:
parent
81c1745f26
commit
6b58243c91
1 changed files with 1 additions and 1 deletions
|
@ -153,7 +153,7 @@ export async function inviteToWorkspace() {
|
|||
let user_id = await vscode.window.showInputBox({ prompt: "Enter name of the user you want to invite" });
|
||||
if (user_id === undefined) return;
|
||||
await client.invite_to_workspace(workspace_id,user_id);
|
||||
vscode.window.showInformationMessage("Invited " + user_id + "into workspace " + workspace_id);
|
||||
vscode.window.showInformationMessage("Invited " + user_id + " into workspace " + workspace_id);
|
||||
}
|
||||
|
||||
export async function leaveWorkspace() {
|
||||
|
|
Loading…
Reference in a new issue