summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLauri Ojansivu <x@xet7.org>2017-04-25 20:32:54 +0300
committerLauri Ojansivu <x@xet7.org>2017-04-25 20:32:54 +0300
commit8f5512230609ed1a6d23b1ae455b474d037509c9 (patch)
treec2674a71172da397622e32d78c6bce2cb7e46d48
parente25ea28ba0b8a576cee43d5e8d35fa49e0aa663b (diff)
parent22aa6efa32fa5a8ff4fe3301097849bc250f2212 (diff)
downloadwekan-8f5512230609ed1a6d23b1ae455b474d037509c9.tar.gz
wekan-8f5512230609ed1a6d23b1ae455b474d037509c9.tar.bz2
wekan-8f5512230609ed1a6d23b1ae455b474d037509c9.zip
Merge branch 'import-comment-fixes' of https://github.com/rhelsing/wekan into rhelsing-import-comment-fixes
-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,
});
}
}