Files
Torkel Ödegaard 27f66a6df9 Angular: Move coreModule to app/angular and isolate angular usage more (#41433)
* moving coreModule to app/angular and isolating it more

* fixed ts issue
2021-11-09 08:37:16 +01:00

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);