Merge branch 'rjevnikar-boardViewMigration' into devel

Fixes #1675
This commit is contained in:
Lauri Ojansivu 2018-06-06 23:12:00 +03:00
commit 8471f389eb
2 changed files with 16 additions and 6 deletions

View file

@ -1,3 +1,11 @@
# Upcoming Wekan release
This release possibly fixes the following bugs, please test:
* [Try to fix: Missing board-view-lists Field after DB updated to Wekan 1.02](https://github.com/wekan/wekan/issues/1675).
Thanks to GitHub user rjevnikar for contributions.
# v1.02 2018-05-26 Wekan release
This release fixes the following bugs:

View file

@ -211,12 +211,14 @@ Migrations.add('add-checklist-items', () => {
Migrations.add('add-profile-view', () => {
Users.find().forEach((user) => {
// Set default view
Users.direct.update(
{ _id: user._id },
{ $set: { 'profile.boardView': 'board-view-lists' } },
noValidate
);
if (!user.hasOwnProperty('profile.boardView')) {
// Set default view
Users.direct.update(
{ _id: user._id },
{ $set: { 'profile.boardView': 'board-view-lists' } },
noValidate
);
}
});
});