summaryrefslogtreecommitdiffstats
path: root/models
diff options
context:
space:
mode:
Diffstat (limited to 'models')
-rw-r--r--models/wekanCreator.js3
1 files changed, 3 insertions, 0 deletions
diff --git a/models/wekanCreator.js b/models/wekanCreator.js
index d774db67..99d1df2d 100644
--- a/models/wekanCreator.js
+++ b/models/wekanCreator.js
@@ -228,7 +228,10 @@ export class WekanCreator {
title: card.title,
// we attribute the card to its creator if available
userId: this._user(this.createdBy.cards[card._id]),
+ isOvertime: card.isOvertime || false,
+ startAt: card.startAt ? this._now(card.startAt) : null,
dueAt: card.dueAt ? this._now(card.dueAt) : null,
+ spentTime: card.spentTime || null,
};
// add labels
if (card.labelIds) {