diff options
author | Claudius | 2018-09-10 22:35:38 +0200 |
---|---|---|
committer | WilliButz | 2018-09-26 21:01:15 +0200 |
commit | bb80bc2292d2841776e8bfd6285f96194d990284 (patch) | |
tree | 9ea69de534cd1d977e6d8a886a8f4e576132996f /lib/web | |
parent | 825ee4e66e79271c39631f2b9eb059caa8f17bfc (diff) |
removing superfluous config parameters for template files
Signed-off-by: Claudius <opensource@amenthes.de>
Diffstat (limited to '')
-rw-r--r-- | lib/web/statusRouter.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/web/statusRouter.js b/lib/web/statusRouter.js index 7ecf3839..fb2609ea 100644 --- a/lib/web/statusRouter.js +++ b/lib/web/statusRouter.js @@ -105,5 +105,5 @@ statusRouter.get('/config', function (req, res) { 'X-Robots-Tag': 'noindex, nofollow', // prevent crawling 'Content-Type': 'application/javascript' }) - res.render(config.constantsPath, data) + res.render('../js/lib/common/constant.ejs', data) }) |