ember-parse-adapter
ember-parse-adapter copied to clipboard
An Ember Data Adapter for Parse
Hello, I'm kind of a newb at doing pull requests, so I'll just state the issue here: The Date transform needs the following change on `line 26`: ``` return new...
Now that this library has been converted to an Ember CLI Addon I recommend bumping the version number to 0.6.0 or 1.0.0 - something to indicate that there has been...
I have a few more extra fields on my Parse User table and so wanted to extend the EmberParseAdapter.ParseUser model with one specific to my app. This causes creation of...
This may be a newb question, but I am wondering how `ParseUser.signup` is intended to be used? Here I am creating a user if none exists for testing: // app/models/parse-user.js...
When you remove a model that pertains to an Array of a related model, that array is updated by Ember Data but not stored unless you manually call the parent...
Refactor `serializeHasMany` to be simpler and more correct. Enable a test for adding to a hasMany, add a test for removal from a hasMany. I'm not convinced the conditionals in...
I'm having some trouble getting the package to decent usage (at least, for a newbie). 1. installation was troublesome, since the addon is not available and had to dig through...
Is there a way to get cloudcode functions working? I want to be able to query a certain model with a `POST` request, passing in geolocation data. `POST http://api.parse.com/1/functions/proximity` with...
Fussing around the code, trying to squash a bug, I _discovered_ there are options for relationships that would enable us to use different Parse types. On top of that, it...
I simplified code to show relevant issue. Ember data models: ``` var page = DS.Model.extend({ categories: DS.hasMany('category', {async: true}), }); var category= DS.Model.extend({ page: DS.belongsTo('page', {async: true}) }); ``` In...