summaryrefslogtreecommitdiff
path: root/lib/config/default.js
diff options
context:
space:
mode:
authorSheogorath2018-01-26 14:00:48 +0100
committerSheogorath2018-01-27 23:50:15 +0100
commitbd92010dd2e16d6fd87012ebd17fde0e9c01c4f6 (patch)
tree24c73d76df0a3691b88e5d8166fd463811d5e78a /lib/config/default.js
parent0138911274cec46e83ebb3adc08c85f341d6b81e (diff)
Remove camel case from `imageuploadtype` in config
This removes the only camel cased option of the config options **we** added to the config.json. In auth provider's config parts are a lot of camel cased options provided. We shouldn't touch them to keep them as similar as possible to the examples. Fixes #315 Signed-off-by: Sheogorath <sheogorath@shivering-isles.com>
Diffstat (limited to 'lib/config/default.js')
-rw-r--r--lib/config/default.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/config/default.js b/lib/config/default.js
index 28f4490c..38dc21a4 100644
--- a/lib/config/default.js
+++ b/lib/config/default.js
@@ -53,7 +53,9 @@ module.exports = {
// document
documentmaxlength: 100000,
// image upload setting, available options are imgur/s3/filesystem
- imageUploadType: 'filesystem',
+ imageuploadtype: 'filesystem',
+ // legacy variable name for imageuploadtype
+ imageUploadType: undefined,
imgur: {
clientID: undefined
},