grafana/public/app/angular/services/alert_srv.ts

13 lines
281 B
TypeScript
Raw Normal View History

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
2017-12-20 05:33:33 -06:00
coreModule.service('alertSrv', AlertSrv);