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

10 lines
272 B
TypeScript
Raw Normal View History

2018-03-11 23:53:05 -05:00
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';
}
}