12345678910111213141516 |
- import { ReactiveCache } from '/imports/reactiveCache';
- export function trelloGetMembersToMap(data) {
- // we will work on the list itself (an ordered array of objects) when a
- // mapping is done, we add a 'wekan' field to the object representing the
- // imported member
- const membersToMap = data.members;
- // auto-map based on username
- membersToMap.forEach(importedMember => {
- const wekanUser = ReactiveCache.getUser({ username: importedMember.username });
- if (wekanUser) {
- importedMember.wekanId = wekanUser._id;
- }
- });
- return membersToMap;
- }
|