0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-27 22:49:56 -05:00
ghost/core/client/routes/editor.js

12 lines
299 B
JavaScript
Raw Normal View History

import ajax from 'ghost/utils/ajax';
import styleBody from 'ghost/mixins/style-body';
var EditorRoute = Ember.Route.extend(styleBody, {
classNames: ['editor'],
model: function (params) {
return ajax('/ghost/api/v0.1/posts/' + params.post_id);
}
});
export default EditorRoute;