I currently have the following set up:
App.GamesRoute = Ember.Route.extend({
model: function() { return this.store.find(“game”);
} });App.GamesController = Ember.ArrayController.extend({ needs: [“filter”, “sort”], filter: Ember.computed.alias(“controllers.filter”), sort: Ember.computed.alias(“controllers.sort”), });
App.SortController = Ember.ArrayController.extend({ needs: “games”, games: Ember.computed.alias(“controllers.games”); });