mirror of
https://github.com/grafana/grafana.git
synced 2025-02-20 11:48:34 -06:00
* fix frontend mssql/postgres * fix frontend Co-authored-by: Ying WANG <ying.wang@grafana.com>
37 lines
1.4 KiB
TypeScript
37 lines
1.4 KiB
TypeScript
import {
|
|
createChangeHandler,
|
|
createResetHandler,
|
|
PasswordFieldEnum,
|
|
} from '../../../features/datasources/utils/passwordHandlers';
|
|
|
|
export class MssqlConfigCtrl {
|
|
static templateUrl = 'partials/config.html';
|
|
|
|
// Set through angular bindings
|
|
declare current: any;
|
|
|
|
onPasswordReset: ReturnType<typeof createResetHandler>;
|
|
onPasswordChange: ReturnType<typeof createChangeHandler>;
|
|
showUserCredentials: boolean;
|
|
|
|
/** @ngInject */
|
|
constructor($scope: any) {
|
|
this.current = $scope.ctrl.current;
|
|
this.current.jsonData.encrypt = this.current.jsonData.encrypt || 'false';
|
|
this.current.jsonData.authenticationType = this.current.jsonData.authenticationType || 'SQL Server Authentication';
|
|
this.onPasswordReset = createResetHandler(this, PasswordFieldEnum.Password);
|
|
this.onPasswordChange = createChangeHandler(this, PasswordFieldEnum.Password);
|
|
this.showUserCredentials = this.current.jsonData.authenticationType !== 'Windows Authentication';
|
|
}
|
|
|
|
onAuthenticationTypeChange() {
|
|
// This is using the fallback in https://github.com/denisenkom/go-mssqldb to use Windows Auth if login/user id is empty.
|
|
if (this.current.jsonData.authenticationType === 'Windows Authentication') {
|
|
this.current.user = '';
|
|
this.current.password = '';
|
|
}
|
|
|
|
this.showUserCredentials = this.current.jsonData.authenticationType !== 'Windows Authentication';
|
|
}
|
|
}
|