Vulcan/client/views/posts/modules/post_info.js

11 lines
No EOL
296 B
JavaScript

Template[getTemplate('postInfo')].helpers({
pointsUnitDisplayText: function(){
return this.upvotes == 1 ? i18n.t('point') : i18n.t('points');
},
can_edit: function(){
return canEdit(Meteor.user(), this);
},
getTemplate: function() {
return getTemplate("postAuthor");
}
});