cant see add list if comment only

This commit is contained in:
Ryan Helsing 2017-03-18 15:22:40 -04:00
parent e6276271b1
commit 383daf6f64
3 changed files with 12 additions and 1 deletions

View file

@ -204,3 +204,9 @@ BlazeComponent.extendComponent({
}];
},
}).register('addListForm');
Template.boardBody.helpers({
canSeeAddList() {
return Meteor.user() && Meteor.user().isBoardMember() && !Meteor.user().isCommentOnly();
},
});