Reputation: 721
I can't find anything anywhere, but it is possible to modify a record inside the store with ember-data ?
I know there is store.createRecord( 'user', { name: bob});
But how can I do to be able to modify a specific record ?
Like this : store.updateRecord( 'user', recordToModify, newData)
?
Is there anything already available by ember-data or I should just write it by myself ?
Upvotes: 1
Views: 101