Fix: boardAdmin can't edit or delete others comments on cards #4237

This commit is contained in:
Ben0it-T 2021-12-18 13:03:37 +01:00
parent fee82f7f7a
commit ee2fafb6bc

View file

@ -75,10 +75,10 @@ CardComments.allow({
return allowIsBoardMember(userId, Boards.findOne(doc.boardId)); return allowIsBoardMember(userId, Boards.findOne(doc.boardId));
}, },
update(userId, doc) { update(userId, doc) {
return userId === doc.userId; return userId === doc.userId || allowIsBoardAdmin(userId, Boards.findOne(doc.boardId));
}, },
remove(userId, doc) { remove(userId, doc) {
return userId === doc.userId; return userId === doc.userId || allowIsBoardAdmin(userId, Boards.findOne(doc.boardId));
}, },
fetch: ['userId', 'boardId'], fetch: ['userId', 'boardId'],
}); });