ember-sync icon indicating copy to clipboard operation
ember-sync copied to clipboard

Results 16 ember-sync issues
Sort by recently updated
recently updated
newest added

Is this project still alive? Is it maintained?

Move this to https://github.com/ud-sync organization.

Say a record exists on both online and offline store. Now, somebody deletes it from the online store. The next time I call emberSync.find(), will it be deleted from the...

I updated ember-cli to 1.13.8 and the following Ember : 1.13.7 Ember Data : 1.13.8 jQuery : 1.11.3 Now I am getting the following error: Error: Assertion Failed: Passing classes...

a post and many comments exist and are stored offline. When refreshing the page, the offline models are created, and no online models exist. If refreshing only the post from...

``` javascript _serializeAssociations: function() { (..) var pushToCollection = function(snapshot) { if (typeof(snapshot)==='undefined') {return true;}//added (..) }, ```

When using this.emberSync.find('post'), after fetching data from the server, the relationships are not pushed to the offline Store, only to the online Store: in ActiveModel serializer, extractArray pushes the relationships...

Small piece of code for this, use ``` javascript this.emberSync.findOfflineFirst('posts'); ``` or ``` javascript this.emberSync.findOfflineFirst('post','27'); ``` to get a promise filled with offline store results if any (without fetching the...

I had the issue described in http://stackoverflow.com/questions/21724343/no-container-in-jsonserializer on my app, using an online store initializer as described in the docs. Solution was to get rid of declaring the serializer in...

I'm not sure in which cases ember doesn't returns promises for relations (it seems to be the standard behaviour with ember-data, even for async=false relationship), but in case it helps...