summaryrefslogtreecommitdiffstats
path: root/models/boards.js
diff options
context:
space:
mode:
Diffstat (limited to 'models/boards.js')
-rw-r--r--models/boards.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/models/boards.js b/models/boards.js
index cdf83ce0..d5363f4e 100644
--- a/models/boards.js
+++ b/models/boards.js
@@ -80,15 +80,15 @@ Boards.attachSchema(new SimpleSchema({
Boards.helpers({
/**
- * Is current logged-in user authorized to view this board?
+ * Is supplied user authorized to view this board?
*/
- isVisibleByUser() {
+ isVisibleBy(user) {
if(this.isPublic()) {
// public boards are visible to everyone
return true;
} else {
// otherwise you have to be logged-in and active member
- return this.isActiveMember(Meteor.userId());
+ return this.isActiveMember(user._id);
}
},