Merge pull request #4477 from helioguardabaxo/master

Added members list and board card count per list on My Boards
This commit is contained in:
Lauri Ojansivu 2022-04-15 19:52:29 +03:00 committed by GitHub
commit 9ed1105e7e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 188 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 } };
},