983110d931
no issue - add eslint-plugin-ember, configure no-old-shims rule - run `eslint --fix` on `app`, `lib`, `mirage`, and `tests` to move imports to the new module imports - further cleanup of Ember globals usage - remove event-dispatcher initializer now that `canDispatchToEventManager` is deprecated
15 lines
323 B
JavaScript
15 lines
323 B
JavaScript
import Evented from '@ember/object/evented';
|
|
import Service from '@ember/service';
|
|
|
|
export default Service.extend(Evented, {
|
|
publish() {
|
|
return this.trigger(...arguments);
|
|
},
|
|
subscribe() {
|
|
return this.on(...arguments);
|
|
},
|
|
unsubscribe() {
|
|
return this.off(...arguments);
|
|
}
|
|
});
|