mirror of
https://github.com/wekan/wekan.git
synced 2026-01-06 01:28:49 +01:00
Fix: Trello board import fails because of missing "Swimlane id".
Thanks to xet7 ! Closes #1442
This commit is contained in:
parent
735907977d
commit
65c081acc0
3 changed files with 11 additions and 0 deletions
|
|
@ -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
|
# v0.67 2018-01-28 Wekan release
|
||||||
|
|
||||||
This release fixes the following bugs:
|
This release fixes the following bugs:
|
||||||
|
|
|
||||||
|
|
@ -149,6 +149,7 @@ export class TrelloCreator {
|
||||||
isAdmin: true,
|
isAdmin: true,
|
||||||
isActive: true,
|
isActive: true,
|
||||||
isCommentOnly: false,
|
isCommentOnly: false,
|
||||||
|
swimlaneId: false,
|
||||||
}],
|
}],
|
||||||
permission: this.getPermission(trelloBoard.prefs.permissionLevel),
|
permission: this.getPermission(trelloBoard.prefs.permissionLevel),
|
||||||
slug: getSlug(trelloBoard.name) || 'board',
|
slug: getSlug(trelloBoard.name) || 'board',
|
||||||
|
|
@ -175,6 +176,7 @@ export class TrelloCreator {
|
||||||
isAdmin: this.getAdmin(trelloMembership.memberType),
|
isAdmin: this.getAdmin(trelloMembership.memberType),
|
||||||
isActive: true,
|
isActive: true,
|
||||||
isCommentOnly: false,
|
isCommentOnly: false,
|
||||||
|
swimlaneId: false,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -146,6 +146,7 @@ export class WekanCreator {
|
||||||
isActive: true,
|
isActive: true,
|
||||||
isAdmin: true,
|
isAdmin: true,
|
||||||
isCommentOnly: false,
|
isCommentOnly: false,
|
||||||
|
swimlaneId: false,
|
||||||
}],
|
}],
|
||||||
// Standalone Export has modifiedAt missing, adding modifiedAt to fix it
|
// Standalone Export has modifiedAt missing, adding modifiedAt to fix it
|
||||||
modifiedAt: this._now(boardToImport.modifiedAt),
|
modifiedAt: this._now(boardToImport.modifiedAt),
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue