This commit is contained in:
Sandeep Somavarapu
2022-01-23 18:57:58 +01:00
parent 01ce486029
commit 49d77d4df6
5 changed files with 28 additions and 20 deletions

View File

@@ -41,8 +41,8 @@ class UserDataSyncMachinesService extends Disposable implements IUserDataSyncMac
return this.channel.call('renameMachine', [machineId, name]);
}
setEnablement(machineId: string, enabled: boolean): Promise<void> {
return this.channel.call('setEnablement', [machineId, enabled]);
setEnablements(enablements: [string, boolean][]): Promise<void> {
return this.channel.call('setEnablements', enablements);
}
}