Ghost/ghost/admin/app/routes/home.js
John O'Nolan 181de6f5ea View site inside Ghost Admin
no refs.
- added "View site" as the first and default menu item in navigation bar to be able to browse the site without leaving the Admin
- rearranged left sidebar items according to new structure (moved Labs down to bottom)
- removed "View site" from publication main menu because it's become redundant
- added Night shift toggle in line with Labs menu to be able quickly access it
2019-03-21 10:33:14 +01:00

8 lines
138 B
JavaScript

import Route from '@ember/routing/route';
export default Route.extend({
beforeModel() {
this.transitionTo('site');
}
});