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

Fix lint errors related to trello creator

Ghassen Rjab 7 жил өмнө
parent
commit
951a0db380
1 өөрчлөгдсөн 13 нэмэгдсэн , 13 устгасан
  1. 13 13
      models/trelloCreator.js

+ 13 - 13
models/trelloCreator.js

@@ -401,19 +401,19 @@ export class TrelloCreator {
   }
 
   createSwimlanes(boardId) {
-      const swimlaneToCreate = {
-        archived: false,
-        boardId,
-        // We are being defensing here by providing a default date (now) if the
-        // creation date wasn't found on the action log. This happen on old
-        // Wekan boards (eg from 2013) that didn't log the 'createList' action
-        // we require.
-        createdAt: this._now(),
-        title: 'Default',
-      };
-      const swimlaneId = Swimlanes.direct.insert(swimlaneToCreate);
-      Swimlanes.direct.update(swimlaneId, {$set: {'updatedAt': this._now()}});
-      this.swimlane = swimlaneId;
+    const swimlaneToCreate = {
+      archived: false,
+      boardId,
+      // We are being defensing here by providing a default date (now) if the
+      // creation date wasn't found on the action log. This happen on old
+      // Wekan boards (eg from 2013) that didn't log the 'createList' action
+      // we require.
+      createdAt: this._now(),
+      title: 'Default',
+    };
+    const swimlaneId = Swimlanes.direct.insert(swimlaneToCreate);
+    Swimlanes.direct.update(swimlaneId, {$set: {'updatedAt': this._now()}});
+    this.swimlane = swimlaneId;
   }
 
   createChecklists(trelloChecklists) {