I\'m using ember-cli 1.13.8 and I have a service that handles most of my logic. Right now I have a function that listens to whether certain things are true or false and then
You can use the routing service (which is a private API):
routing: Ember.inject.service('-routing'), init() { ... if(true) { console.log("you've won!"); this.get("routing").transitionTo("congratulations"); } },