Skip to content

Instantly share code, notes, and snippets.

@dlferro
Created October 7, 2014 18:47
Show Gist options
  • Save dlferro/d826b8da5f418d9c8317 to your computer and use it in GitHub Desktop.
Save dlferro/d826b8da5f418d9c8317 to your computer and use it in GitHub Desktop.
Application Controller
App.ApplicationController = Em.ArrayController.extend({
itemController: 'socialItem',
unapprovedItems: function() {
return this.get('model').filterProperty('state', 0);
}.property('model.@each.state'),
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment