We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 84a6c22 commit 965f2bbCopy full SHA for 965f2bb
src/extension.ts
@@ -958,6 +958,12 @@ export async function activate(context: vscode.ExtensionContext): Promise<any> {
958
serverForUri(uri: vscode.Uri): any {
959
const { apiTarget } = connectionTarget(uri);
960
const api = new AtelierAPI(apiTarget);
961
+
962
+ // We explicitly no longer expose the password.
963
+ // API client extensions can use Server Manager 3's authentication provider to get this,
964
+ // which will require user consent.
965
+ api.config.password = undefined;
966
967
const {
968
serverName,
969
active,
0 commit comments