open-nomad/ui/app/utils/notify-error.js

10 lines
293 B
JavaScript
Raw Normal View History

/* eslint-disable ember/no-controller-access-in-routes */
2017-09-28 17:06:13 +00:00
// An error handler to provide to a promise catch to set an error
// on the application controller.
export default function notifyError(route) {
2021-12-28 14:45:20 +00:00
return (error) => {
2017-09-28 17:06:13 +00:00
route.controllerFor('application').set('error', error);
};
}