Ember で Index Controller 内の別のコントローラーにアクセスするにはどうすればよいですか?
App.IndexController = Ember.ArrayController.extend({
doSomethingToAnotherController: function(params) {
// how do I access another controller other than the index controller here?
}
});