mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-30 01:42:29 +03:00
12 lines
344 B
JavaScript
12 lines
344 B
JavaScript
import AuthenticatedRoute from 'ghost/routes/authenticated';
|
|
import styleBody from 'ghost/mixins/style-body';
|
|
import loadingIndicator from 'ghost/mixins/loading-indicator';
|
|
|
|
var SettingsRoute = AuthenticatedRoute.extend(styleBody, loadingIndicator, {
|
|
titleToken: 'Settings',
|
|
|
|
classNames: ['settings']
|
|
});
|
|
|
|
export default SettingsRoute;
|