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

10 lines
277 B
TypeScript
Raw Normal View History

2018-03-12 13:53:05 +09:00
export class PrometheusConfigCtrl {
static templateUrl = 'public/app/plugins/datasource/prometheus/partials/config.html';
current: any;
/** @ngInject */
constructor($scope: any) {
2018-03-12 13:53:05 +09:00
this.current.jsonData.httpMethod = this.current.jsonData.httpMethod || 'GET';
}
}