summaryrefslogtreecommitdiffstats
path: root/models/users.js
diff options
context:
space:
mode:
authorRyan Helsing <ryanhelsing@gmail.com>2017-03-18 18:49:39 -0400
committerRyan Helsing <ryanhelsing@gmail.com>2017-03-18 18:49:39 -0400
commitde10be6a21679ad6ea3a6d97506f84d32cc72d26 (patch)
tree1c34b9656a7df29857ca079cdd105585d9f61538 /models/users.js
parentec9498fa627228bd411af6070645fa2ed7cd895d (diff)
downloadwekan-de10be6a21679ad6ea3a6d97506f84d32cc72d26.tar.gz
wekan-de10be6a21679ad6ea3a6d97506f84d32cc72d26.tar.bz2
wekan-de10be6a21679ad6ea3a6d97506f84d32cc72d26.zip
comment only working, naive implementation complete
Diffstat (limited to 'models/users.js')
-rw-r--r--models/users.js5
1 files changed, 5 insertions, 0 deletions
diff --git a/models/users.js b/models/users.js
index 3073e759..f062df9d 100644
--- a/models/users.js
+++ b/models/users.js
@@ -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);