mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-29 15:12:58 +03:00
10 lines
288 B
JavaScript
10 lines
288 B
JavaScript
import AuthenticatedRoute from 'ghost-admin/routes/authenticated';
|
|
import styleBody from 'ghost-admin/mixins/style-body';
|
|
import {inject as service} from '@ember/service';
|
|
|
|
export default AuthenticatedRoute.extend(styleBody, {
|
|
titleToken: 'About',
|
|
|
|
classNames: ['view-about']
|
|
});
|