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
It seems this is done diffently now. I had success with this way of doing it:
App = Ember.Application.create();
App.Router.map(function() {
// 'index' route is default
this.resource('dashboard');
});
App.IndexRoute = Ember.Route.extend({
redirect: function() {
// this redirects / to /dashboard
this.transitionTo('dashboard');
}
});
App.DashboardRoute = Ember.Route.extend({
});