Added members list and board card count per list on My Boards

This commit is contained in:
helioguardabaxo 2022-04-15 13:19:37 -03:00
parent 536021107e
commit 5f2820d7e0
8 changed files with 186 additions and 0 deletions

View file

@ -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(