Added Dropdown field "List" to card details

This commit is contained in:
Martin Filser 2022-02-02 23:34:38 +01:00
parent e668fdc500
commit 7c7640e63e
6 changed files with 64 additions and 1 deletions

View file

@ -440,6 +440,14 @@ Boards.attachSchema(
defaultValue: true,
},
allowsShowLists: {
/**
* Does the board allows show lists on the card?
*/
type: Boolean,
defaultValue: true,
},
allowsAssignedBy: {
/**
* Does the board allows requested by?
@ -1370,6 +1378,10 @@ Boards.mutations({
return { $set: { allowsCardSortingByNumber } };
},
setAllowsShowLists(allowsShowLists) {
return { $set: { allowsShowLists } };
},
setAllowsAttachments(allowsAttachments) {
return { $set: { allowsAttachments } };
},