summaryrefslogtreecommitdiffstats
path: root/client/components/settings/settingBody.js
diff options
context:
space:
mode:
authorLauri Ojansivu <x@xet7.org>2020-01-06 11:01:38 +0200
committerLauri Ojansivu <x@xet7.org>2020-01-06 11:01:38 +0200
commitddce0ada094e6450be260b4cda21fdfa09ae0133 (patch)
treec6a079713ab28ab9c7a779f2e43d9b46673d2b4f /client/components/settings/settingBody.js
parent60df1fa1ee7aeaf0132c460d98e069e874603908 (diff)
downloadwekan-ddce0ada094e6450be260b4cda21fdfa09ae0133.tar.gz
wekan-ddce0ada094e6450be260b4cda21fdfa09ae0133.tar.bz2
wekan-ddce0ada094e6450be260b4cda21fdfa09ae0133.zip
Removed Custom HTML feature that does not work.
Thanks to xet7 ! Closes #2218
Diffstat (limited to 'client/components/settings/settingBody.js')
-rw-r--r--client/components/settings/settingBody.js8
1 files changed, 0 insertions, 8 deletions
diff --git a/client/components/settings/settingBody.js b/client/components/settings/settingBody.js
index 4ff5aedd..319c066b 100644
--- a/client/components/settings/settingBody.js
+++ b/client/components/settings/settingBody.js
@@ -171,20 +171,12 @@ BlazeComponent.extendComponent({
const displayAuthenticationMethod =
$('input[name=displayAuthenticationMethod]:checked').val() === 'true';
const defaultAuthenticationMethod = $('#defaultAuthenticationMethod').val();
- const customHTMLafterBodyStart = $('#customHTMLafterBodyStart')
- .val()
- .trim();
- const customHTMLbeforeBodyEnd = $('#customHTMLbeforeBodyEnd')
- .val()
- .trim();
try {
Settings.update(Settings.findOne()._id, {
$set: {
productName,
hideLogo: hideLogoChange,
- customHTMLafterBodyStart,
- customHTMLbeforeBodyEnd,
displayAuthenticationMethod,
defaultAuthenticationMethod,
},