0.0.4

ember-auto-save

Install

ember install ember-auto-save

Description

An Ember-cli addon that provides auto-save functionality for Ember applications.

AutoSaveProxy

This is a computed property that provides an autoSaveProxy object. The autoSaveProxy object will proxy all get() and set() requests to the model property. Setting properties on the autoSaveProxy object will be automatically saved.

AutoSaveComponent

You can use the AutoSaveComponent to wrap a model and provide an autoSaveProxy object.

AutoSaveMixin

The AutoSaveMixin overrides the setUnknownProperty method, and triggers the save method when properties are set on the model.

save() method

Use the save() method to save the model using the Ember.js debounce() method.