Is there a way to add a record to the Ember Data Store without relying on the adapter?
Whenever I use
this.store.push({type: type, data: data})
, the store always sets the hasDirtyAttributes
flag to true.
To work around this issue, I have been using this.store.findRecord(type, id);
to update the record from the server, even though the data
is already retrieved from the server.