I have a State in my router which connects an outlet using my view class UserApp.RegistrationView. Creation of the right controller class for that view, RegistrationController, seems to work magically based on convention:
registration: Em.State.extend({
route: '/reg',
registrationModel: null,
connectOutlets: function (router) {
router.get('applicationController').connectOutlet(UserApp.RegistrationView, UserApp.RegistrationModel.create());
}
})
So I do not control creation of the controller, BUT I would like to run some initialization code when a controller is created. What is the best way to do that?