require trust for cfg vals

This commit is contained in:
SteVen Batten 2021-04-16 09:53:06 -07:00
parent 59963d0328
commit 8bcc74944c
2 changed files with 2 additions and 0 deletions

View file

@ -223,6 +223,7 @@ Registry.as<IConfigurationRegistry>(Extensions.Configuration).registerConfigurat
localize('telemetry.enableTelemetry', "Enable usage data and errors to be sent to a Microsoft online service.") :
localize('telemetry.enableTelemetryMd', "Enable usage data and errors to be sent to a Microsoft online service. Read our privacy statement [here]({0}).", product.privacyStatementUrl),
'default': true,
'requireTrust': true,
'scope': ConfigurationScope.APPLICATION,
'tags': ['usesOnlineServices']
}

View file

@ -28,6 +28,7 @@ registry.registerConfiguration({
'description': localize('workbench.enableExperiments', "Fetches experiments to run from a Microsoft online service."),
'default': true,
'scope': ConfigurationScope.APPLICATION,
'requireTrust': true,
'tags': ['usesOnlineServices']
}
}