Files
nomad/ui/app/utils/notify-error.js
2023-08-10 17:27:29 -05:00

15 lines
372 B
JavaScript

/**
* Copyright (c) HashiCorp, Inc.
* SPDX-License-Identifier: BUSL-1.1
*/
/* eslint-disable ember/no-controller-access-in-routes */
// An error handler to provide to a promise catch to set an error
// on the application controller.
export default function notifyError(route) {
return (error) => {
route.controllerFor('application').set('error', error);
};
}