mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-13 22:41:32 -05:00
d249591290
closes #5328 - removes all references to nprogress and loading indicator
10 lines
263 B
JavaScript
10 lines
263 B
JavaScript
import AuthenticatedRoute from 'ghost/routes/authenticated';
|
|
import styleBody from 'ghost/mixins/style-body';
|
|
|
|
var SettingsRoute = AuthenticatedRoute.extend(styleBody, {
|
|
titleToken: 'Settings',
|
|
|
|
classNames: ['settings']
|
|
});
|
|
|
|
export default SettingsRoute;
|