diff options
author | Lauri Ojansivu <x@xet7.org> | 2018-11-08 22:49:08 +0200 |
---|---|---|
committer | Lauri Ojansivu <x@xet7.org> | 2018-11-08 22:49:08 +0200 |
commit | 4cf98134491b5870796de795418000c0a7c3a694 (patch) | |
tree | 7efdd76a487adec7ddd4277150bfd616baf11b2e /models/import.js | |
parent | d44fb6bedd80e2ae85c028c4eb34bc9da90e4418 (diff) | |
download | wekan-4cf98134491b5870796de795418000c0a7c3a694.tar.gz wekan-4cf98134491b5870796de795418000c0a7c3a694.tar.bz2 wekan-4cf98134491b5870796de795418000c0a7c3a694.zip |
- Some fixes to Wekan import:
- isCommentOnly and isNoComments are now optional
- Turn off import error checking, so something is imported anyway, and import does not stop at error.
- Now most of Sandstorm export do import to Standalone Wekan, but some of imported cards, dates etc are missing.
- Sandstorm Import Wekan board warning messages are now translateable.
Thanks to xet7 !
Closes #1945,
closes #1616,
closes #1903
Diffstat (limited to 'models/import.js')
-rw-r--r-- | models/import.js | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/models/import.js b/models/import.js index 09769794..5cdf8dc1 100644 --- a/models/import.js +++ b/models/import.js @@ -3,10 +3,10 @@ import { WekanCreator } from './wekanCreator'; Meteor.methods({ importBoard(board, data, importSource, currentBoard) { - check(board, Object); - check(data, Object); - check(importSource, String); - check(currentBoard, Match.Maybe(String)); + //check(board, Object); + //check(data, Object); + //check(importSource, String); + //check(currentBoard, Match.Maybe(String)); let creator; switch (importSource) { case 'trello': @@ -18,7 +18,7 @@ Meteor.methods({ } // 1. check all parameters are ok from a syntax point of view - creator.check(board); + //creator.check(board); // 2. check parameters are ok from a business point of view (exist & // authorized) nothing to check, everyone can import boards in their account |