mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-20 17:22:51 -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:
@@ -259,8 +259,8 @@ export class TestConnectionManagementService implements IConnectionManagementSer
|
||||
return undefined!;
|
||||
}
|
||||
|
||||
getActiveConnectionCredentials(profileId: string): { [name: string]: string } {
|
||||
return undefined!;
|
||||
getConnectionCredentials(profileId: string): Promise<{ [name: string]: string }> {
|
||||
return Promise.resolve(undefined);
|
||||
}
|
||||
|
||||
getServerInfo(profileId: string): azdata.ServerInfo {
|
||||
|
||||
Reference in New Issue
Block a user