mirror of
https://github.com/grafana/grafana.git
synced 2025-02-13 00:55:47 -06:00
14 lines
258 B
TypeScript
14 lines
258 B
TypeScript
import coreModule from 'app/core/core_module';
|
|
|
|
export class AlertingSrv {
|
|
dashboard: any;
|
|
alerts: any[];
|
|
|
|
init(dashboard, alerts) {
|
|
this.dashboard = dashboard;
|
|
this.alerts = alerts || [];
|
|
}
|
|
}
|
|
|
|
coreModule.service('alertingSrv', AlertingSrv);
|