CardDetails sorting number is displayed at card and can be modified (if configured)

This commit is contained in:
Martin Filser 2021-04-12 23:34:02 +02:00
parent ab22fb27ce
commit 540ce3a6ed
6 changed files with 68 additions and 0 deletions

View file

@ -373,6 +373,14 @@ Boards.attachSchema(
defaultValue: true,
},
allowsCardSortingByNumber: {
/**
* Does the board allows card sorting by number?
*/
type: Boolean,
defaultValue: true,
},
allowsAssignedBy: {
/**
* Does the board allows requested by?
@ -1190,6 +1198,10 @@ Boards.mutations({
return { $set: { allowsRequestedBy } };
},
setAllowsCardSortingByNumber(allowsCardSortingByNumber) {
return { $set: { allowsCardSortingByNumber } };
},
setAllowsAttachments(allowsAttachments) {
return { $set: { allowsAttachments } };
},