grafana/public/app/features/dashboard/alerting_srv.ts

14 lines
258 B
TypeScript
Raw Normal View History

2017-12-20 05:33:33 -06:00
import coreModule from 'app/core/core_module';
export class AlertingSrv {
dashboard: any;
alerts: any[];
init(dashboard, alerts) {
this.dashboard = dashboard;
this.alerts = alerts || [];
}
}
2017-12-20 05:33:33 -06:00
coreModule.service('alertingSrv', AlertingSrv);