mirror of
https://github.com/wekan/wekan.git
synced 2026-03-11 08:02:33 +01:00
Reverted New UI Design of WeKan v8.29 and added more fixes and performance improvements.
Thanks to xet7 !
This commit is contained in:
parent
d152d8fc1b
commit
1b8b8d2eef
196 changed files with 17659 additions and 10028 deletions
29
server/publications/customUI.js
Normal file
29
server/publications/customUI.js
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
// Publish custom UI configuration
|
||||
Meteor.publish('customUI', function() {
|
||||
// Published to all users (public configuration)
|
||||
return Settings.find({}, {
|
||||
fields: {
|
||||
customLoginLogoImageUrl: 1,
|
||||
customLoginLogoLinkUrl: 1,
|
||||
customHelpLinkUrl: 1,
|
||||
textBelowCustomLoginLogo: 1,
|
||||
customTopLeftCornerLogoImageUrl: 1,
|
||||
customTopLeftCornerLogoLinkUrl: 1,
|
||||
customTopLeftCornerLogoHeight: 1,
|
||||
customHTMLafterBodyStart: 1,
|
||||
customHTMLbeforeBodyEnd: 1,
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
// Publish Matomo configuration
|
||||
Meteor.publish('matomoConfig', function() {
|
||||
// Published to all users (public configuration)
|
||||
return Settings.find({}, {
|
||||
fields: {
|
||||
matomoEnabled: 1,
|
||||
matomoURL: 1,
|
||||
matomoSiteId: 1,
|
||||
}
|
||||
});
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue