mirror of
https://github.com/wekan/wekan.git
synced 2025-12-19 17:00:13 +01:00
Add vote import from Trello
This commit is contained in:
parent
f09219cbfd
commit
e661d03e8d
1 changed files with 25 additions and 2 deletions
|
|
@ -285,6 +285,29 @@ export class TrelloCreator {
|
||||||
cardToCreate.members = wekanMembers;
|
cardToCreate.members = wekanMembers;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
// add vote
|
||||||
|
if (card.idMembersVoted) {
|
||||||
|
// Trello only know's positive votes
|
||||||
|
const positiveVotes = [];
|
||||||
|
card.idMembersVoted.forEach(trelloId => {
|
||||||
|
if (this.members[trelloId]) {
|
||||||
|
const wekanId = this.members[trelloId];
|
||||||
|
// we may map multiple Trello members to the same wekan user
|
||||||
|
// in which case we risk adding the same user multiple times
|
||||||
|
if (!positiveVotes.find(wId => wId === wekanId)) {
|
||||||
|
positiveVotes.push(wekanId);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
})
|
||||||
|
if (positiveVotes.length > 0) {
|
||||||
|
cardToCreate.vote = {
|
||||||
|
question: cardToCreate.title,
|
||||||
|
positive: positiveVotes,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// insert card
|
// insert card
|
||||||
const cardId = Cards.direct.insert(cardToCreate);
|
const cardId = Cards.direct.insert(cardToCreate);
|
||||||
// keep track of Trello id => Wekan id
|
// keep track of Trello id => Wekan id
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue