mirror of
https://github.com/wekan/wekan.git
synced 2025-12-16 15:30:13 +01:00
- 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
29 lines
842 B
JavaScript
29 lines
842 B
JavaScript
import { TrelloCreator } from './trelloCreator';
|
|
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));
|
|
let creator;
|
|
switch (importSource) {
|
|
case 'trello':
|
|
creator = new TrelloCreator(data);
|
|
break;
|
|
case 'wekan':
|
|
creator = new WekanCreator(data);
|
|
break;
|
|
}
|
|
|
|
// 1. check all parameters are ok from a syntax point of view
|
|
//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
|
|
|
|
// 3. create all elements
|
|
return creator.create(board, currentBoard);
|
|
},
|
|
});
|