Files
grafana/public/app/plugins/datasource/mssql/config_ctrl.ts

11 lines
223 B
TypeScript
Raw Normal View History

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