mirror of
https://github.com/kemko/nomad.git
synced 2026-01-10 20:35:42 +03:00
15 lines
338 B
JavaScript
15 lines
338 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
import Mixin from '@ember/object/mixin';
|
|
import notifyError from 'nomad-ui/utils/notify-error';
|
|
|
|
// eslint-disable-next-line ember/no-new-mixins
|
|
export default Mixin.create({
|
|
model() {
|
|
return this._super(...arguments).catch(notifyError(this));
|
|
},
|
|
});
|