Redirect index to dashboard

This commit is contained in:
2019-07-11 09:41:46 +02:00
parent 8cc1b02d19
commit a73a4da575
+9
View File
@@ -0,0 +1,9 @@
import Route from '@ember/routing/route';
export default Route.extend({
redirect () {
this.transitionTo('dashboard');
}
});