mirror of
https://github.com/wekan/wekan.git
synced 2025-12-27 04:38:49 +01:00
- Custom Product Name in Admin Panel / Layout. In Progress, setting does not affect change UI yet. Thanks to xet7 !
- Fix LDAP User Search Scope. Thanks to Vnimos and Akuket ! Related #119 - Fix Save Admin Panel STMP password. Thanks to saurabharch and xet7 ! Closes #1856
This commit is contained in:
parent
82e90f7b94
commit
4cb25a5bcf
11 changed files with 98 additions and 43 deletions
|
|
@ -350,3 +350,15 @@ Migrations.add('remove-customFields-references-broken', () => {
|
|||
},
|
||||
}, noValidateMulti);
|
||||
});
|
||||
|
||||
Migrations.add('add-product-name', () => {
|
||||
Settings.update({
|
||||
productName: {
|
||||
$exists: false,
|
||||
},
|
||||
}, {
|
||||
$set: {
|
||||
productName:'',
|
||||
},
|
||||
}, noValidateMulti);
|
||||
});
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue