diff options
Diffstat (limited to 'models/settings.js')
-rw-r--r-- | models/settings.js | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/models/settings.js b/models/settings.js index 52212809..5db57cd8 100644 --- a/models/settings.js +++ b/models/settings.js @@ -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'), |