alert_srv.ts 277 B

123456789101112
  1. import coreModule from 'app/core/core_module';
  2. export class AlertSrv {
  3. constructor() {}
  4. set() {
  5. console.log('old depricated 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);