config_ctrl.ts 326 B

1234567891011
  1. export class StackdriverConfigCtrl {
  2. static templateUrl = 'public/app/plugins/datasource/stackdriver/partials/config.html';
  3. datasourceSrv: any;
  4. current: any;
  5. /** @ngInject */
  6. constructor($scope, datasourceSrv) {
  7. this.datasourceSrv = datasourceSrv;
  8. this.current.jsonData = this.current.jsonData || {};
  9. }
  10. }