handle default auth type (#20572)

* handle default auth type

* comments
This commit is contained in:
Alan Ren
2022-09-09 08:59:53 -07:00
committed by GitHub
parent 982c242301
commit 1f6482490c
3 changed files with 8 additions and 5 deletions

View File

@@ -221,7 +221,7 @@ export interface IConnectionManagementService {
/**
* Gets the default authentication type from the configuration service
*/
getDefaultAuthenticationTypeId(): string;
getDefaultAuthenticationTypeId(providerName: string): string;
/**
* Cancels the connection

View File

@@ -306,7 +306,7 @@ export class TestConnectionManagementService implements IConnectionManagementSer
return undefined!;
}
getDefaultAuthenticationTypeId(): string {
getDefaultAuthenticationTypeId(providerName: string): string {
return undefined!;
}