Ghost/ghost/admin/controllers/posts/post.js

14 lines
317 B
JavaScript
Raw Normal View History

var PostController = Ember.ObjectController.extend({
isPublished: Ember.computed.equal('status', 'published'),
actions: {
toggleFeatured: function () {
this.set('featured', !this.get('featured'));
this.get('model').save();
}
}
});
export default PostController;