mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-17 13:31:39 +03:00
6 lines
170 B
JavaScript
6 lines
170 B
JavaScript
|
var equal = Ember.computed.equal;
|
||
|
|
||
|
export default Ember.ObjectController.extend({
|
||
|
isPublished: equal('status', 'published'),
|
||
|
isDraft: equal('status', 'draft')
|
||
|
});
|