mirror of
https://github.com/wekan/wekan.git
synced 2026-01-02 15:48:49 +01:00
- Admin Panel / Layout / Custom Product Name now changes webpage title.
Thanks to xet7 ! Related #1196
This commit is contained in:
parent
c066883dbd
commit
dbb1a86ca3
6 changed files with 55 additions and 15 deletions
|
|
@ -74,7 +74,7 @@ if (Meteor.isServer) {
|
|||
if(!setting){
|
||||
const now = new Date();
|
||||
const domain = process.env.ROOT_URL.match(/\/\/(?:www\.)?(.*)?(?:\/)?/)[1];
|
||||
const from = `Wekan <wekan@${domain}>`;
|
||||
const from = `Boards Support <support@${domain}>`;
|
||||
const defaultSetting = {disableRegistration: false, mailServer: {
|
||||
username: '', password: '', host: '', port: '', enableTLS: false, from,
|
||||
}, createdAt: now, modifiedAt: now};
|
||||
|
|
@ -210,6 +210,19 @@ if (Meteor.isServer) {
|
|||
};
|
||||
},
|
||||
|
||||
getCustomUI(){
|
||||
const setting = Settings.findOne({});
|
||||
if (!setting.productName) {
|
||||
return {
|
||||
productName: 'Wekan',
|
||||
};
|
||||
} else {
|
||||
return {
|
||||
productName: `${setting.productName}`,
|
||||
};
|
||||
}
|
||||
},
|
||||
|
||||
getMatomoConf(){
|
||||
return {
|
||||
address: getEnvVar('MATOMO_ADDRESS'),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue