mirror of
https://github.com/wekan/wekan.git
synced 2025-12-16 23:40:13 +01:00
Added members list and board card count per list on My Boards
This commit is contained in:
parent
536021107e
commit
5f2820d7e0
8 changed files with 186 additions and 0 deletions
|
|
@ -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 } };
|
||||
},
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue