I\'m sure this will become clear as I dig in deeper, but for now it\'s not obvious how to make this happen.
I was following the info on this helpful SO article about ro
With Ember CLI, you can put the redirect in index.js in your root of routes directory:
import Ember from 'ember'; export default Ember.Route.extend( { redirect: function() { this.transitionTo('dashboard'); } });