0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-13 22:41:32 -05:00
ghost/core/client/routes/debug.js
2014-06-09 02:05:40 +00:00

11 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();
}
});