Just kidding, keep proposed onDidChangeAuthenticationProviders API for now

This commit is contained in:
Rachel Macfarlane
2021-01-04 17:01:05 -08:00
parent 942c3bad6b
commit 4d8895c7b7
3 changed files with 6 additions and 16 deletions

View File

@@ -219,14 +219,6 @@ export function createApiFactoryAndRegisterActors(accessor: ServicesAccessor): I
checkProposedApiEnabled(extension);
return extHostAuthentication.onDidChangeAuthenticationProviders;
},
getProviderIds(): Thenable<ReadonlyArray<string>> {
checkProposedApiEnabled(extension);
return extHostAuthentication.getProviderIds();
},
get providerIds(): string[] {
checkProposedApiEnabled(extension);
return extHostAuthentication.providerIds;
},
get providers(): ReadonlyArray<vscode.AuthenticationProviderInformation> {
checkProposedApiEnabled(extension);
return extHostAuthentication.providers;