mirror of
https://github.com/wekan/wekan.git
synced 2025-12-16 15:30:13 +01:00
19 lines
454 B
JavaScript
19 lines
454 B
JavaScript
allowIsBoardAdmin = function(userId, board) {
|
|
return board && board.hasAdmin(userId);
|
|
};
|
|
|
|
allowIsBoardMember = function(userId, board) {
|
|
return board && board.hasMember(userId);
|
|
};
|
|
|
|
allowIsBoardMemberNonComment = function(userId, board) {
|
|
return board && board.hasMember(userId) && !board.hasCommentOnly(userId);
|
|
};
|
|
|
|
allowIsBoardMemberByCard = function(userId, card) {
|
|
const board = card.board();
|
|
return board && board.hasMember(userId);
|
|
};
|
|
|
|
|
|
|