Results 40 issues of 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}) }); ```

bug

Our belief is that error handling should be done inside controllers off the returned promises.

enhancement

I'm dealing with an API that only returns an ID upon successful creation. Should just be able to call `record.load(1)`.

enhancement

It would be nice to be able to batch these operations to reduce the number of requests made to the server.

enhancement

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.

bug

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.

enhancement