mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-18 09:35:39 -05:00
getCredentials returns credentials for any saved connection (#11029)
* getCredentials returns credentials for any saved connection * Update doc comment * Add tests * cleanup * cleanup
This commit is contained in:
@@ -121,7 +121,7 @@ export class MainThreadConnectionManagement extends Disposable implements MainTh
|
||||
}
|
||||
|
||||
public $getCredentials(connectionId: string): Thenable<{ [name: string]: string }> {
|
||||
return Promise.resolve(this._connectionManagementService.getActiveConnectionCredentials(connectionId));
|
||||
return Promise.resolve(this._connectionManagementService.getConnectionCredentials(connectionId));
|
||||
}
|
||||
|
||||
public $getServerInfo(connectionId: string): Thenable<azdata.ServerInfo> {
|
||||
|
||||
Reference in New Issue
Block a user