mirror of
https://github.com/wekan/wekan.git
synced 2026-02-04 23:51:48 +01:00
Added Dropdown field "List" to card details
This commit is contained in:
parent
e668fdc500
commit
7c7640e63e
6 changed files with 64 additions and 1 deletions
|
|
@ -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 } };
|
||||
},
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue