mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-14 09:52:09 +03:00
ff5af6c29b
closes #2419 - Added blur-text-field component, which fires actions on focusOut - Added utils/date-formatting for moment & date functionality consolidation - Added functionality to PostsPostController - Added fixtures: posts/3 & posts/4, posts/slug/test%20title/ - Added Post model saving - Set posts.post as controller for EditorRoute - Added PostSettingsMenuView and template - Added "showErrors" convenience method to notifications
16 lines
510 B
JavaScript
16 lines
510 B
JavaScript
import ajax from 'ghost/utils/ajax';
|
|
import styleBody from 'ghost/mixins/style-body';
|
|
import AuthenticatedRoute from 'ghost/routes/authenticated';
|
|
import Post from 'ghost/models/post';
|
|
var EditorRoute = AuthenticatedRoute.extend(styleBody, {
|
|
classNames: ['editor'],
|
|
controllerName: 'posts.post',
|
|
model: function (params) {
|
|
return ajax('/ghost/api/v0.1/posts/' + params.post_id).then(function (post) {
|
|
return Post.create(post);
|
|
});
|
|
}
|
|
});
|
|
|
|
export default EditorRoute;
|