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

12 lines
326 B
TypeScript
Raw Normal View History

2018-09-04 06:21:02 -05:00
export class StackdriverConfigCtrl {
static templateUrl = 'public/app/plugins/datasource/stackdriver/partials/config.html';
datasourceSrv: any;
current: any;
/** @ngInject */
constructor($scope, datasourceSrv) {
this.datasourceSrv = datasourceSrv;
this.current.jsonData = this.current.jsonData || {};
}
}