summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLauri Ojansivu <x@xet7.org>2017-04-25 20:33:14 +0300
committerLauri Ojansivu <x@xet7.org>2017-04-25 20:33:14 +0300
commit6095002faff6a1fd4418b0d9a1c68d6bfbd52bed (patch)
treec2674a71172da397622e32d78c6bce2cb7e46d48
parente25ea28ba0b8a576cee43d5e8d35fa49e0aa663b (diff)
parent8f5512230609ed1a6d23b1ae455b474d037509c9 (diff)
downloadwekan-6095002faff6a1fd4418b0d9a1c68d6bfbd52bed.tar.gz
wekan-6095002faff6a1fd4418b0d9a1c68d6bfbd52bed.tar.bz2
wekan-6095002faff6a1fd4418b0d9a1c68d6bfbd52bed.zip
Merge branch 'rhelsing-import-comment-fixes' into devel
-rw-r--r--models/import.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/models/import.js b/models/import.js
index 41c2204b..4e78c53a 100644
--- a/models/import.js
+++ b/models/import.js
@@ -145,6 +145,7 @@ class TrelloCreator {
userId: Meteor.userId(),
isAdmin: true,
isActive: true,
+ isCommentOnly: false,
}],
permission: this.getPermission(trelloBoard.prefs.permissionLevel),
slug: getSlug(trelloBoard.name) || 'board',
@@ -170,6 +171,7 @@ class TrelloCreator {
userId: wekanId,
isAdmin: this.getAdmin(trelloMembership.memberType),
isActive: true,
+ isCommentOnly: false,
});
}
}