Added members list and board card count per list on My Boards

This commit is contained in:
helioguardabaxo 2022-04-15 13:19:37 -03:00
parent 536021107e
commit 5f2820d7e0
8 changed files with 186 additions and 0 deletions

View file

@ -292,6 +292,20 @@ Boards.attachSchema(
}
},
},
allowsCardCounterList: {
/**
* Show card counter per list
*/
type: Boolean,
defaultValue: false,
},
allowsBoardMemberList: {
/**
* Show board member list
*/
type: Boolean,
defaultValue: false,
},
description: {
/**
* The description of the board
@ -1434,6 +1448,14 @@ Boards.mutations({
return { $set: { allowsReceivedDate } };
},
setAllowsCardCounterList(allowsCardCounterList) {
return { $set: { allowsCardCounterList } };
},
setAllowsBoardMemberList(allowsBoardMemberList) {
return { $set: { allowsBoardMemberList } };
},
setAllowsStartDate(allowsStartDate) {
return { $set: { allowsStartDate } };
},