alert_srv.ts 281 B

123456789101112
  1. import coreModule from 'app/angular/core_module';
  2. export class AlertSrv {
  3. constructor() {}
  4. set() {
  5. console.warn('old deprecated alert srv being used');
  6. }
  7. }
  8. // this is just added to not break old plugins that might be using it
  9. coreModule.service('alertSrv', AlertSrv);