config_ctrl.ts 223 B

12345678910
  1. export class MssqlConfigCtrl {
  2. static templateUrl = 'partials/config.html';
  3. current: any;
  4. /** @ngInject */
  5. constructor($scope) {
  6. this.current.jsonData.encrypt = this.current.jsonData.encrypt || 'false';
  7. }
  8. }