mirror of
https://github.com/grafana/grafana.git
synced 2025-02-20 11:48:34 -06:00
11 lines
223 B
TypeScript
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';
|
|
}
|
|
}
|