2
0
Эх сурвалжийг харах

- Fix cards export and add customFields export.

Thanks to ymeramees !

Closes #1873,
related #1775
Lauri Ojansivu 6 жил өмнө
parent
commit
6eeb708e4d
1 өөрчлөгдсөн 2 нэмэгдсэн , 1 устгасан
  1. 2 1
      models/export.js

+ 2 - 1
models/export.js

@@ -45,7 +45,7 @@ class Exporter {
 
   build() {
     const byBoard = { boardId: this._boardId };
-    const byBoardNoLinked = { boardId: this._boardId, linkedId: null };
+    const byBoardNoLinked = { boardId: this._boardId, linkedId: "" };
     // we do not want to retrieve boardId in related elements
     const noBoardId = { fields: { boardId: 0 } };
     const result = {
@@ -55,6 +55,7 @@ class Exporter {
     result.lists = Lists.find(byBoard, noBoardId).fetch();
     result.cards = Cards.find(byBoardNoLinked, noBoardId).fetch();
     result.swimlanes = Swimlanes.find(byBoard, noBoardId).fetch();
+    result.customFields = CustomFields.find(byBoard, noBoardId).fetch();
     result.comments = CardComments.find(byBoard, noBoardId).fetch();
     result.activities = Activities.find(byBoard, noBoardId).fetch();
     result.checklists = [];