mirror of
https://github.com/wekan/wekan.git
synced 2025-12-16 23:40:13 +01:00
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:
parent
cb9ced756f
commit
dd6ba152a0
11 changed files with 67 additions and 9 deletions
|
|
@ -362,3 +362,15 @@ Migrations.add('add-product-name', () => {
|
|||
},
|
||||
}, noValidateMulti);
|
||||
});
|
||||
|
||||
Migrations.add('add-hide-logo', () => {
|
||||
Settings.update({
|
||||
hideLogo: {
|
||||
$exists: false,
|
||||
},
|
||||
}, {
|
||||
$set: {
|
||||
hideLogo: false,
|
||||
},
|
||||
}, noValidateMulti);
|
||||
});
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue