mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-29 15:12:58 +03:00
a059ace335
no issue - removing dashboard prototype from master ready to re-apply in 4.0 branch
8 lines
153 B
JavaScript
8 lines
153 B
JavaScript
import Route from '@ember/routing/route';
|
|
|
|
export default class HomeRoute extends Route {
|
|
beforeModel() {
|
|
this.transitionTo('site');
|
|
}
|
|
}
|