Admin Panel / Layout: Hide Logo: Yes / No. This does hide Wekan logo on Login page and Board page. Thanks to xet7.

This commit is contained in:
Lauri Ojansivu 2018-11-20 02:38:00 +02:00
parent cb9ced756f
commit dd6ba152a0
11 changed files with 67 additions and 9 deletions

View file

@ -362,3 +362,15 @@ Migrations.add('add-product-name', () => {
},
}, noValidateMulti);
});
Migrations.add('add-hide-logo', () => {
Settings.update({
hideLogo: {
$exists: false,
},
}, {
$set: {
hideLogo: false,
},
}, noValidateMulti);
});