mirror of
https://github.com/wekan/wekan.git
synced 2025-12-29 21:58:49 +01:00
Board level settings for subtasks
This commit is contained in:
parent
c9f70cf382
commit
94a52080cf
8 changed files with 140 additions and 4 deletions
|
|
@ -287,3 +287,15 @@ Migrations.add('add-subtasks-sort', () => {
|
|||
}, noValidateMulti);
|
||||
});
|
||||
|
||||
Migrations.add('add-subtasks-allowed', () => {
|
||||
Boards.update({
|
||||
allowsSubtasks: {
|
||||
$exists: false,
|
||||
},
|
||||
}, {
|
||||
$set: {
|
||||
allowsSubtasks: -1,
|
||||
},
|
||||
}, noValidateMulti);
|
||||
});
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue