summaryrefslogtreecommitdiffstats
path: root/models
diff options
context:
space:
mode:
Diffstat (limited to 'models')
-rw-r--r--models/cards.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/models/cards.js b/models/cards.js
index 78005b38..f454c72c 100644
--- a/models/cards.js
+++ b/models/cards.js
@@ -763,7 +763,7 @@ Cards.helpers({
return card.assignees;
} else if (this.isLinkedBoard()) {
const board = Boards.findOne({ _id: this.linkedId });
- return board.activeAssignees().map(assignee => {
+ return board.activeMembers().map(assignee => {
return assignee.userId;
});
} else {