mirror of
https://github.com/grafana/grafana.git
synced 2025-02-12 08:35:43 -06:00
13 lines
281 B
TypeScript
13 lines
281 B
TypeScript
import coreModule from 'app/angular/core_module';
|
|
|
|
export class AlertSrv {
|
|
constructor() {}
|
|
|
|
set() {
|
|
console.warn('old deprecated alert srv being used');
|
|
}
|
|
}
|
|
|
|
// this is just added to not break old plugins that might be using it
|
|
coreModule.service('alertSrv', AlertSrv);
|