Opened card Checklist menu: Hide finished tasks. Show Checklist at Minicard.

Thanks to C0rn3j and xet7 !

Fixes #6019,
fixes #5567,
fixes #2984
This commit is contained in:
Lauri Ojansivu 2025-12-29 21:42:19 +02:00
parent cf62807ad5
commit fbfde81bc8
13 changed files with 312 additions and 161 deletions

View file

@ -570,6 +570,14 @@ Boards.attachSchema(
defaultValue: false,
},
allowsChecklistAtMinicard: {
/**
* Does the board allow showing checklists on all minicards?
*/
type: Boolean,
defaultValue: false,
},
allowsReceivedDate: {
/**
* Does the board allows received date?
@ -1578,6 +1586,10 @@ Boards.mutations({
return { $set: { allowsShowListsOnMinicard } };
},
setAllowsChecklistAtMinicard(allowsChecklistAtMinicard) {
return { $set: { allowsChecklistAtMinicard } };
},
setAllowsRequestedBy(allowsRequestedBy) {
return { $set: { allowsRequestedBy } };
},