Get rid of old implementation for substacks

This commit is contained in:
Nicu Tofan 2018-06-24 00:21:23 +03:00
parent cd36194477
commit 4ac6a507cd
No known key found for this signature in database
GPG key ID: 7EE66E95E64FD0B7
7 changed files with 29 additions and 177 deletions

View file

@ -62,7 +62,7 @@ class Exporter {
result.cards.forEach((card) => {
result.checklists.push(...Checklists.find({ cardId: card._id }).fetch());
result.checklistItems.push(...ChecklistItems.find({ cardId: card._id }).fetch());
result.subtaskItems.push(...Subtasks.find({ cardId: card._id }).fetch());
result.subtaskItems.push(...Cards.find({ parentid: card._id }).fetch());
});
// [Old] for attachments we only export IDs and absolute url to original doc