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