I have an action:
{{action create target=\"controller\"}}
which I have targeted to the bound controller (rather than the router) like this:
Use transitionToRoute('route') to redirect inside an Ember controller action:
App.AddBoardController = Ember.Controller.extend({ create: function(){ ... //TODO: Redirect to route this.transitionToRoute('route_name'); } ...