diff --git a/server/authentication.js b/server/authentication.js index 20477bc53..9e519fe15 100644 --- a/server/authentication.js +++ b/server/authentication.js @@ -58,7 +58,7 @@ Meteor.startup(() => { const board = Boards.findOne({ _id: boardId }); const normalAccess = board.permission === 'public' || - board.members.some(e => e.userId === userId); + board.members.some(e => e.userId === userId).isActive; Authentication.checkAdminOrCondition(userId, normalAccess); };