mirror of
https://github.com/wekan/wekan.git
synced 2025-09-22 01:50:48 +02:00
Merge pull request #4477 from helioguardabaxo/master
Added members list and board card count per list on My Boards
This commit is contained in:
commit
9ed1105e7e
8 changed files with 188 additions and 0 deletions
|
@ -73,6 +73,39 @@ Migrations.add('board-background-color', () => {
|
|||
);
|
||||
});
|
||||
|
||||
Migrations.add('add-cardcounterlist-allowed', () => {
|
||||
Boards.update(
|
||||
{
|
||||
allowsCardCounterList: {
|
||||
$exists: false,
|
||||
},
|
||||
},
|
||||
{
|
||||
$set: {
|
||||
allowsCardCounterList: true,
|
||||
},
|
||||
},
|
||||
noValidateMulti,
|
||||
);
|
||||
});
|
||||
|
||||
Migrations.add('add-boardmemberlist-allowed', () => {
|
||||
Boards.update(
|
||||
{
|
||||
allowsBoardMemberList: {
|
||||
$exists: false,
|
||||
},
|
||||
},
|
||||
{
|
||||
$set: {
|
||||
allowsBoardMemberList: true,
|
||||
},
|
||||
},
|
||||
noValidateMulti,
|
||||
);
|
||||
});
|
||||
|
||||
|
||||
Migrations.add('lowercase-board-permission', () => {
|
||||
['Public', 'Private'].forEach(permission => {
|
||||
Boards.update(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue