diff options
author | Sheogorath | 2018-06-23 23:40:46 +0200 |
---|---|---|
committer | Sheogorath | 2018-06-23 23:40:55 +0200 |
commit | 318b2d378f54805e99b7022db15136df7c920083 (patch) | |
tree | 2f7ea603b4b8c5423ebc07cdc9cc226c62aa1553 /lib/config | |
parent | a2608c319a8c31f9b173dbb5d00221d3ad96739b (diff) |
Allow to disable gravatar
Since Gravatar is an external image source and not perfect from a
privacy perspective, forbidding it allows to improve privacy.
This commit also simplifies and optimizes the avatar code.
Signed-off-by: Sheogorath <sheogorath@shivering-isles.com>
Diffstat (limited to 'lib/config')
-rw-r--r-- | lib/config/default.js | 1 | ||||
-rw-r--r-- | lib/config/environment.js | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/lib/config/default.js b/lib/config/default.js index f88c17b3..ec44ae78 100644 --- a/lib/config/default.js +++ b/lib/config/default.js @@ -146,5 +146,6 @@ module.exports = { }, email: true, allowEmailRegister: true, + allowGravatar: true, allowPDFExport: true } diff --git a/lib/config/environment.js b/lib/config/environment.js index e1c11569..0ca3d920 100644 --- a/lib/config/environment.js +++ b/lib/config/environment.js @@ -120,5 +120,6 @@ module.exports = { }, email: toBooleanConfig(process.env.HMD_EMAIL), allowEmailRegister: toBooleanConfig(process.env.HMD_ALLOW_EMAIL_REGISTER), + allowGravatar: toBooleanConfig(process.env.HMD_ALLOW_GRAVATAR), allowPDFExport: toBooleanConfig(process.env.HMD_ALLOW_PDF_EXPORT) } |