config_ctrl.ts 277 B

123456789
  1. export class PrometheusConfigCtrl {
  2. static templateUrl = 'public/app/plugins/datasource/prometheus/partials/config.html';
  3. current: any;
  4. /** @ngInject */
  5. constructor($scope: any) {
  6. this.current.jsonData.httpMethod = this.current.jsonData.httpMethod || 'GET';
  7. }
  8. }