mirror of
https://github.com/wekan/wekan.git
synced 2025-04-23 13:37:09 -04:00
Merge branch 'GhassenRjab-fix-trello-import' into devel
Import due date from Trello. Thanks to GhassenRjab ! Closes #1081
This commit is contained in:
commit
868587c409
2 changed files with 6 additions and 1 deletions
|
@ -1,6 +1,10 @@
|
|||
# Upcoming Wekan release
|
||||
|
||||
This release fixes the following bugs:
|
||||
This release adds the following new features:
|
||||
|
||||
* [Import due date from Trello](https://github.com/wekan/wekan/pull/1082).
|
||||
|
||||
and fixes the following bugs:
|
||||
|
||||
* [Fix importing Trello board: Attribute correct members to their
|
||||
comments](https://github.com/wekan/wekan/pull/1080);
|
||||
|
|
|
@ -229,6 +229,7 @@ class TrelloCreator {
|
|||
title: card.name,
|
||||
// we attribute the card to its creator if available
|
||||
userId: this._user(this.createdBy.cards[card.id]),
|
||||
dueAt: card.due ? this._now(card.due) : null,
|
||||
};
|
||||
// add labels
|
||||
if (card.idLabels) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue