mirror of
https://github.com/wekan/wekan.git
synced 2025-12-24 03:10:12 +01:00
Can add cards as subtasks
This commit is contained in:
parent
adb7f5b2ca
commit
5a023e4315
4 changed files with 92 additions and 5 deletions
|
|
@ -269,3 +269,16 @@ Migrations.add('add-parent-field-to-cards', () => {
|
|||
},
|
||||
}, noValidateMulti);
|
||||
});
|
||||
|
||||
Migrations.add('add-subtasks-boards', () => {
|
||||
Boards.update({
|
||||
subtasksDefaultBoardId: {
|
||||
$exists: false,
|
||||
},
|
||||
}, {
|
||||
$set: {
|
||||
subtasksDefaultBoardId: null,
|
||||
subtasksDefaultListId: null,
|
||||
},
|
||||
}, noValidateMulti);
|
||||
});
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue