mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-24 01:25:37 -05:00
Added NoAuth authenticationType for Kusto (#14375)
* Added NoAuth authenticationType for Kusto * Added SqlLogin to Kusto as an AuthType. Renamed NoAuth to None
This commit is contained in:
@@ -91,6 +91,9 @@ export class ConnectionStore {
|
||||
});
|
||||
} else if (credentialsItem.authenticationType === 'AzureMFA' || credentialsItem.authenticationType === 'dstsAuth' && credentialsItem.azureAccount) {
|
||||
return Promise.resolve({ profile: credentialsItem, savedCred: true });
|
||||
} else if (credentialsItem.authenticationType === 'None') {
|
||||
// Kusto supports no authentication
|
||||
return Promise.resolve({ profile: credentialsItem, savedCred: true });
|
||||
} else {
|
||||
// No need to look up the password
|
||||
return Promise.resolve({ profile: credentialsItem, savedCred: credentialsItem.savePassword });
|
||||
|
||||
Reference in New Issue
Block a user