Custom Logo for Login and Top Left Corner. Optional link when clicking logo. Settings at Admin Panel / Layout.

Thanks to xet7 !

Fixes #1493,
fixes #2721,
fixes #2681,
fixes #1583,
fixes #1196,
fixes #336,
fixes wekan/wekan-snap#130
This commit is contained in:
Lauri Ojansivu 2020-09-18 18:45:48 +03:00
parent 7db08082bc
commit a7c3317ed6
10 changed files with 116 additions and 20 deletions

View file

@ -1044,3 +1044,19 @@ Migrations.add('add-default-profile-view', () => {
}
});
});
Migrations.add('add-hide-logo-by-default', () => {
Settings.update(
{
hideLogo: {
hideLogo: false,
},
},
{
$set: {
hideLogo: true,
},
},
noValidateMulti,
);
});

View file

@ -12,6 +12,10 @@ Meteor.publish('setting', () => {
disableRegistration: 1,
productName: 1,
hideLogo: 1,
customLoginLogoImageUrl: 1,
customLoginLogoTargetUrl: 1,
customTopLeftCornerLogoImageUrl: 1,
customTopLeftCornerLogoTargetUrl: 1,
customHTMLafterBodyStart: 1,
customHTMLbeforeBodyEnd: 1,
displayAuthenticationMethod: 1,