- 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:
Lauri Ojansivu 2018-10-24 11:39:45 +03:00
parent 82e90f7b94
commit 4cb25a5bcf
11 changed files with 98 additions and 43 deletions

View file

@ -350,3 +350,15 @@ Migrations.add('remove-customFields-references-broken', () => {
},
}, noValidateMulti);
});
Migrations.add('add-product-name', () => {
Settings.update({
productName: {
$exists: false,
},
}, {
$set: {
productName:'',
},
}, noValidateMulti);
});