From 6ff0cf91e2fe6fd0e777225eb7afb3b37ac313e7 Mon Sep 17 00:00:00 2001 From: Ghassen Rjab Date: Sat, 2 Sep 2017 07:17:42 +0100 Subject: Add source field to imported attachments We use this field to prevent adding attachments' related activities automatically only. Then this field will be removed. --- models/wekanCreator.js | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'models/wekanCreator.js') diff --git a/models/wekanCreator.js b/models/wekanCreator.js index d96ad2ca..3d0a2397 100644 --- a/models/wekanCreator.js +++ b/models/wekanCreator.js @@ -313,6 +313,9 @@ export class WekanCreator { file.boardId = boardId; file.cardId = cardId; file.userId = this._user(att.userId); + // The field source will only be used to prevent adding + // attachments' related activities automatically + file.source = 'import'; if (error) { throw(error); } else { @@ -332,6 +335,9 @@ export class WekanCreator { file.boardId = boardId; file.cardId = cardId; file.userId = this._user(att.userId); + // The field source will only be used to prevent adding + // attachments' related activities automatically + file.source = 'import'; if (error) { throw(error); } else { -- cgit v1.2.3-1-g7c22