diff options
author | Sheogorath | 2019-10-23 21:18:57 +0200 |
---|---|---|
committer | GitHub | 2019-10-23 21:18:57 +0200 |
commit | 7a27579589a739e66edc08528c20d32e7a9d7aaf (patch) | |
tree | ca04f1debba564b36e89fd37b63a2e1bdc61e97a /lib | |
parent | 3db757754f02ecd874b4750ee2f7d735222ce641 (diff) | |
parent | e654ca8a3130108a6616131e35524d8f50d80ed0 (diff) |
Merge pull request #205 from hoijui/linkifyHeaderStyle
Allow to generate lower case header references through the config
Diffstat (limited to 'lib')
-rw-r--r-- | lib/config/default.js | 3 | ||||
-rw-r--r-- | lib/web/statusRouter.js | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/lib/config/default.js b/lib/config/default.js index 19bbeb21..f5cceac6 100644 --- a/lib/config/default.js +++ b/lib/config/default.js @@ -157,5 +157,6 @@ module.exports = { allowEmailRegister: true, allowGravatar: true, allowPDFExport: true, - openID: false + openID: false, + linkifyHeaderStyle: 'keep-case' } diff --git a/lib/web/statusRouter.js b/lib/web/statusRouter.js index da69e62c..1d9a1157 100644 --- a/lib/web/statusRouter.js +++ b/lib/web/statusRouter.js @@ -96,7 +96,8 @@ statusRouter.get('/config', function (req, res) { debug: config.debug, version: config.fullversion, DROPBOX_APP_KEY: config.dropbox.appKey, - allowedUploadMimeTypes: config.allowedUploadMimeTypes + allowedUploadMimeTypes: config.allowedUploadMimeTypes, + linkifyHeaderStyle: config.linkifyHeaderStyle } res.set({ 'Cache-Control': 'private', // only cache by client |