summaryrefslogtreecommitdiffstats
path: root/server/lib/utils.js
blob: c155cda50391442f977aaba1dc6dcaccd144bc60 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
allowIsBoardAdmin = function(userId, board) {
	return board && board.hasAdmin(userId);
};

allowIsBoardMember = function(userId, 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);
};