mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-25 19:48:50 +03:00
8 lines
138 B
JavaScript
8 lines
138 B
JavaScript
|
import Route from '@ember/routing/route';
|
||
|
|
||
|
export default Route.extend({
|
||
|
beforeModel() {
|
||
|
this.transitionTo('site');
|
||
|
}
|
||
|
});
|