When the deleteUser action is triggered from the template, the model is deleted from the store but no HTTP request is made to sync data with the server.
How do we commit changes? I found some transactions examples but it looks like ember-data 1.0.0 doesn’t support them anymore.
I have another issue: I used the then function on the save function as showed on the link and the record is deleted (the DELETE HTTP request returns 200 OK) but the error callback is always called.
Do you have any adapters or serializers for the model that you’re saving? If so, it’s very possible that something in either of them could be causing this issue.
It looks like your server returns a payload that doesn’t match up with Ember Data’s standard, so you’ll need to override the normalizePayload method in the serializer for this model if you haven’t done so already.