hide checklist-items per card now

- performance relevant
- more granular setting
This commit is contained in:
Martin Filser 2023-03-18 19:54:36 +01:00
parent d949753d54
commit 9fa36c3991
7 changed files with 47 additions and 46 deletions

View file

@ -1473,3 +1473,19 @@ Migrations.add('remove-user-profile-hiddenSystemMessages', () => {
noValidateMulti,
);
});
Migrations.add('remove-user-profile-hideCheckedItems', () => {
Users.update(
{
"profile.hideCheckedItems": {
$exists: true,
},
},
{
$unset: {
"profile.hideCheckedItems": 1,
},
},
noValidateMulti,
);
});