Ghost/ghost/admin/controllers/editor/new.js

20 lines
550 B
JavaScript
Raw Normal View History

import EditorControllerMixin from 'ghost/mixins/editor-base-controller';
var EditorNewController = Ember.ObjectController.extend(EditorControllerMixin, {
actions: {
/**
* Redirect to editor after the first save
*/
save: function () {
var self = this;
this._super().then(function (model) {
if (model.get('id')) {
self.transitionToRoute('editor.edit', model);
}
});
}
}
});
export default EditorNewController;