Erik Bryn
Erik Bryn
We should probably look at the contents of `` and update the app's document.title appropriately
This doesn't work, for example: ``` App.Comment = Ember.Model.extend({ article: Ember.belongsTo('article', {embedded: false}), article2: Ember.belongsTo(App.Article, {embedded: false}) }); ```
Our belief is that error handling should be done inside controllers off the returned promises.
I'm dealing with an API that only returns an ID upon successful creation. Should just be able to call `record.load(1)`.
It would be nice to be able to batch these operations to reduce the number of requests made to the server.
When the `type` of a hasMany relationship doesn't have an adapter set an error should be getting thrown here, but it's getting eaten by a promise: https://github.com/ebryn/ember-model/blob/master/packages/ember-model/lib/has_many_array.js#L48
There isn't a way to know if every record in a ManyArray has been loaded.
Kinda related to #4. We want to be able to partially create models with data received from push notifications and have them trigger a find to retrieve their full content.