Kaynağa Gözat

Don't publish private boards meta-data to former members

Fixes #302
Maxime Quandalle 9 yıl önce
ebeveyn
işleme
9b9d21030b
1 değiştirilmiş dosya ile 4 ekleme ve 1 silme
  1. 4 1
      server/publications/boards.js

+ 4 - 1
server/publications/boards.js

@@ -16,8 +16,11 @@ Meteor.publish('boards', function() {
   return Boards.find({
     archived: false,
     $or: [
+      {
+        _id: { $in: starredBoards },
+        permission: 'public',
+      },
       { members: { $elemMatch: { userId: this.userId, isActive: true }}},
-      { _id: { $in: starredBoards } },
     ],
   }, {
     fields: {