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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
339 B
JavaScript
Raw Normal View History

// An error handler to provide to a promise catch to set a
// forbidden flag on the route
import codesForError from './codes-for-error';
export default function notifyForbidden(route) {
2021-12-28 14:45:20 +00:00
return (error) => {
if (codesForError(error).includes('403')) {
route.set('isForbidden', true);
} else {
throw error;
}
};
}