mirror of
https://github.com/wekan/wekan.git
synced 2025-04-23 13:37:09 -04:00
Import missing card fields : isOvertime, startAt and spenTime
This commit is contained in:
parent
bbca361aeb
commit
b475127c53
1 changed files with 3 additions and 0 deletions
|
@ -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) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue