grafana/public/app/plugins/datasource/mssql/config_ctrl.ts
2018-10-15 21:41:00 -03:00

11 lines
223 B
TypeScript

export class MssqlConfigCtrl {
static templateUrl = 'partials/config.html';
current: any;
/** @ngInject */
constructor($scope) {
this.current.jsonData.encrypt = this.current.jsonData.encrypt || 'false';
}
}