From 951a0db380d60f3d948ae38d50b85a54983a51de Mon Sep 17 00:00:00 2001 From: Ghassen Rjab Date: Mon, 26 Feb 2018 03:18:26 +0100 Subject: Fix lint errors related to trello creator --- models/trelloCreator.js | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/models/trelloCreator.js b/models/trelloCreator.js index 2d85ee71..89e48a16 100644 --- a/models/trelloCreator.js +++ b/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) { -- cgit v1.2.3-1-g7c22