mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-04 04:10:33 +03:00
12 lines
321 B
JavaScript
12 lines
321 B
JavaScript
import styleBody from 'ghost/mixins/style-body';
|
|
import AuthenticatedRoute from 'ghost/routes/authenticated';
|
|
import SettingsModel from 'ghost/models/settings';
|
|
|
|
export default AuthenticatedRoute.extend(styleBody, {
|
|
classNames: ['settings'],
|
|
|
|
model: function () {
|
|
return SettingsModel.create();
|
|
}
|
|
});
|