mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-25 19:18:59 +01:00
Remember current machine name
This commit is contained in:
@@ -26,8 +26,8 @@ class UserDataSyncMachinesService extends Disposable implements IUserDataSyncMac
|
||||
return this.channel.call<IUserDataSyncMachine[]>('getMachines');
|
||||
}
|
||||
|
||||
addCurrentMachine(name: string): Promise<void> {
|
||||
return this.channel.call('addCurrentMachine', [name]);
|
||||
addCurrentMachine(): Promise<void> {
|
||||
return this.channel.call('addCurrentMachine');
|
||||
}
|
||||
|
||||
removeCurrentMachine(): Promise<void> {
|
||||
|
||||
Reference in New Issue
Block a user