grafana/public/app/plugins/datasource/prometheus/config_ctrl.ts
2018-03-12 13:53:05 +09:00

10 lines
272 B
TypeScript

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