mirror of
https://github.com/wekan/wekan.git
synced 2026-01-02 23:58:49 +01:00
Get rid of old implementation for substacks
This commit is contained in:
parent
cd36194477
commit
4ac6a507cd
7 changed files with 29 additions and 177 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue