open-nomad/ui/app/utils/message-from-adapter-error.js
2018-08-15 15:18:38 -07:00

7 lines
209 B
JavaScript

// Returns a single string based on the response the adapter received
export default function messageFromAdapterError(error) {
if (error.errors) {
return error.errors.mapBy('detail').join('\n\n');
}
}