mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-15 11:34:24 +03:00
d249591290
closes #5328 - removes all references to nprogress and loading indicator
11 lines
263 B
JavaScript
11 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;
|