mirror of
https://github.com/grafana/grafana.git
synced 2025-01-27 00:37:04 -06:00
10 lines
272 B
TypeScript
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';
|
|
}
|
|
}
|