Parent controller load content for child controller

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”); });

Oh I didn’t mean to post this. Is there no way to delete a post?