1107798da6
Generated with a codemode: https://github.com/ember-cli/ember-modules-codemod
9 lines
211 B
JavaScript
9 lines
211 B
JavaScript
import Mixin from '@ember/object/mixin';
|
|
import notifyError from 'nomad-ui/utils/notify-error';
|
|
|
|
export default Mixin.create({
|
|
model() {
|
|
return this._super(...arguments).catch(notifyError(this));
|
|
},
|
|
});
|