mirror of
https://github.com/wekan/wekan.git
synced 2026-01-26 19:26:09 +01:00
Add feature: Add due timeline into Calendar view
This commit is contained in:
parent
d5cff1ec48
commit
62b72a03c4
6 changed files with 62 additions and 23 deletions
|
|
@ -699,6 +699,13 @@ Boards.helpers({
|
|||
return result;
|
||||
},
|
||||
|
||||
cardsDueInBetween(start, end) {
|
||||
return Cards.find({
|
||||
boardId: this._id,
|
||||
dueAt: { $gte: start, $lte: end },
|
||||
});
|
||||
},
|
||||
|
||||
cardsInInterval(start, end) {
|
||||
return Cards.find({
|
||||
boardId: this._id,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue