save (options) Promise
Defined in addon/-private/system/model/model.js:704
Save the record and persist any changes to the record to an external source via the adapter. Example record.set('name', 'Tomster');
record.save().then(function() {
// Success callback
}, function() {
// Error callback
});
If you pass an object on the adapterOptions property of the options argument it will be passed to you adapter via the snapshot record.save({ adapterOptions: { subscribe: false } });
app/adapte