mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-26 12:21:36 +03:00
eb3a8af3d4
No issue
10 lines
315 B
JavaScript
10 lines
315 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, {
|
|
classNames: ['settings']
|
|
});
|
|
|
|
export default SettingsRoute;
|