Sum of cards. In Progress.

Thanks to xet7 !

Related #3796
This commit is contained in:
Lauri Ojansivu 2021-09-08 15:55:53 +03:00
parent a80ab6e47a
commit 8626b466b8
6 changed files with 53 additions and 0 deletions

View file

@ -13,6 +13,13 @@ BlazeComponent.extendComponent({
return [];
},
customFieldsSum() {
return CustomFields.find({
boardIds: { $in: [Session.get('currentBoard')] },
showSumAtTopOfList: true,
});
},
openForm(options) {
options = options || {};
options.position = options.position || 'top';