summaryrefslogtreecommitdiffstats
path: root/server
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 /server
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 'server')
-rw-r--r--server/migrations.js32
1 files changed, 0 insertions, 32 deletions
diff --git a/server/migrations.js b/server/migrations.js
index 92339110..1b7146c5 100644
--- a/server/migrations.js
+++ b/server/migrations.js
@@ -472,38 +472,6 @@ Migrations.add('add-hide-logo', () => {
);
});
-Migrations.add('add-custom-html-after-body-start', () => {
- Settings.update(
- {
- customHTMLafterBodyStart: {
- $exists: false,
- },
- },
- {
- $set: {
- customHTMLafterBodyStart: '',
- },
- },
- noValidateMulti,
- );
-});
-
-Migrations.add('add-custom-html-before-body-end', () => {
- Settings.update(
- {
- customHTMLbeforeBodyEnd: {
- $exists: false,
- },
- },
- {
- $set: {
- customHTMLbeforeBodyEnd: '',
- },
- },
- noValidateMulti,
- );
-});
-
Migrations.add('add-displayAuthenticationMethod', () => {
Settings.update(
{