comment only working, naive implementation complete

This commit is contained in:
Ryan Helsing 2017-03-18 18:49:39 -04:00
parent ec9498fa62
commit de10be6a21
13 changed files with 64 additions and 18 deletions

View file

@ -117,6 +117,11 @@ if (Meteor.isClient) {
return board && board.hasMember(this._id);
},
isNotCommentOnly() {
const board = Boards.findOne(Session.get('currentBoard'));
return board && board.hasMember(this._id) && !board.hasCommentOnly(this._id);
},
isCommentOnly() {
const board = Boards.findOne(Session.get('currentBoard'));
return board && board.hasCommentOnly(this._id);