From 58585a6521de063a382d4f1ffbfe7badd64dd89c Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Wed, 11 Nov 2020 16:09:19 +0100 Subject: [PATCH] :bug: Remove unused config generation on gulpfile. --- frontend/gulpfile.js | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/frontend/gulpfile.js b/frontend/gulpfile.js index ef893ddb8..4f4043703 100644 --- a/frontend/gulpfile.js +++ b/frontend/gulpfile.js @@ -158,19 +158,6 @@ function templatePipeline(options) { const locales = readLocales(); const manifest = readManifest(); - const defaultConf = [ - "var appDemoWarning = null;", - "var appLoginWithLDAP = null;", - "var appPublicURI = null;", - "var appGoogleClientID = null;", - "var appGitlabClientID = null;", - "var appDeployDate = null;", - "var appDeployCommit = null;" - ]; - - fs.writeFileSync(__dirname + "/resources/public/js/config.js", - defaultConf.join("\n")); - const tmpl = mustache({ ts: ts, th: th,