alerting_srv.ts 258 B

12345678910111213
  1. import coreModule from 'app/core/core_module';
  2. export class AlertingSrv {
  3. dashboard: any;
  4. alerts: any[];
  5. init(dashboard, alerts) {
  6. this.dashboard = dashboard;
  7. this.alerts = alerts || [];
  8. }
  9. }
  10. coreModule.service('alertingSrv', AlertingSrv);