App.FooController = Ember.ObjectController.extend({
available: function() {
var all = this.store.all('bar');
}.property()
});
When another model "bar" is added to the global ember-data store, how can I trigger the property to recalculate?
I'm using the latest stable ember 1.1.2 and ember-data 1.0 beta 3