mirror of
https://github.com/wekan/wekan.git
synced 2025-12-17 07:50:12 +01:00
- Fix card copy & move between boards with labels with same name - Fix activities for labels when copying and moving card - Fix activities for customFields when copying and moving card
26 lines
731 B
JavaScript
26 lines
731 B
JavaScript
allowIsBoardAdmin = function(userId, board) {
|
|
return board && board.hasAdmin(userId);
|
|
};
|
|
|
|
allowIsBoardMember = function(userId, board) {
|
|
return board && board.hasMember(userId);
|
|
};
|
|
|
|
allowIsAnyBoardMember = function(userId, boards) {
|
|
return _.some(boards, (board) => {
|
|
return board && board.hasMember(userId);
|
|
});
|
|
};
|
|
|
|
allowIsBoardMemberCommentOnly = function(userId, board) {
|
|
return board && board.hasMember(userId) && !board.hasCommentOnly(userId);
|
|
};
|
|
|
|
allowIsBoardMemberNoComments = function(userId, board) {
|
|
return board && board.hasMember(userId) && !board.hasNoComments(userId);
|
|
};
|
|
|
|
allowIsBoardMemberByCard = function(userId, card) {
|
|
const board = card.board();
|
|
return board && board.hasMember(userId);
|
|
};
|