Here is the scenario:
- I try to save an invalid record using Ember-Data and the ActiveModelSerializer
- My server responds with a 422 status and something like
"errors": {"title": ['cannot be blank']}
Using a recent version of Ember-Data, what are the status flags that should be set on my object?
I’m seeing isError === true
and isValid === true
and the errors object attached to my record is empty.