mirror of
https://github.com/wekan/wekan.git
synced 2025-12-18 00:10:13 +01:00
Migrations, set "Show Lists" on card details on every board
This commit is contained in:
parent
a2e6f01469
commit
bb5b723520
1 changed files with 16 additions and 0 deletions
|
|
@ -1103,3 +1103,19 @@ Migrations.add('assign-boardwise-card-numbers', () => {
|
||||||
});
|
});
|
||||||
})
|
})
|
||||||
});
|
});
|
||||||
|
|
||||||
|
Migrations.add('add-card-details-show-lists', () => {
|
||||||
|
Boards.update(
|
||||||
|
{
|
||||||
|
allowsShowLists: {
|
||||||
|
$exists: false,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
$set: {
|
||||||
|
allowsShowLists: true,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
noValidateMulti,
|
||||||
|
);
|
||||||
|
});
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue