Fix: Trello board import fails because of missing "Swimlane id".

Thanks to xet7 ! Closes #1442
pull/1443/merge
Lauri Ojansivu 7 years ago
parent 735907977d
commit 65c081acc0
  1. 8
      CHANGELOG.md
  2. 2
      models/trelloCreator.js
  3. 1
      models/wekanCreator.js

@ -1,3 +1,11 @@
# Upcoming Wekan release
This release fixes the following bugs:
* [Fix: Trello board import fails because of missing "Swimlane id"](https://github.com/wekan/wekan/issues/1442).
Thanks to GitHub user xet7 for contributions.
# v0.67 2018-01-28 Wekan release
This release fixes the following bugs:

@ -149,6 +149,7 @@ export class TrelloCreator {
isAdmin: true,
isActive: true,
isCommentOnly: false,
swimlaneId: false,
}],
permission: this.getPermission(trelloBoard.prefs.permissionLevel),
slug: getSlug(trelloBoard.name) || 'board',
@ -175,6 +176,7 @@ export class TrelloCreator {
isAdmin: this.getAdmin(trelloMembership.memberType),
isActive: true,
isCommentOnly: false,
swimlaneId: false,
});
}
}

@ -146,6 +146,7 @@ export class WekanCreator {
isActive: true,
isAdmin: true,
isCommentOnly: false,
swimlaneId: false,
}],
// Standalone Export has modifiedAt missing, adding modifiedAt to fix it
modifiedAt: this._now(boardToImport.modifiedAt),

Loading…
Cancel
Save