diff options
author | Sheogorath | 2018-01-26 14:00:48 +0100 |
---|---|---|
committer | Sheogorath | 2018-01-27 23:50:15 +0100 |
commit | bd92010dd2e16d6fd87012ebd17fde0e9c01c4f6 (patch) | |
tree | 24c73d76df0a3691b88e5d8166fd463811d5e78a /docs | |
parent | 0138911274cec46e83ebb3adc08c85f341d6b81e (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 'docs')
-rw-r--r-- | docs/guides/minio-image-upload.md | 4 | ||||
-rw-r--r-- | docs/guides/s3-image-upload.md | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/docs/guides/minio-image-upload.md b/docs/guides/minio-image-upload.md index 273bd8eb..c2ba25b5 100644 --- a/docs/guides/minio-image-upload.md +++ b/docs/guides/minio-image-upload.md @@ -62,7 +62,7 @@ Minio Guide for HackMD 8. Set upload type. ```JSON - "imageUploadType": "minio" + "imageuploadtype": "minio" ``` 9. Review your config. @@ -78,6 +78,6 @@ Minio Guide for HackMD "secure": false }, "s3bucket": "hackmd", - "imageUploadType": "minio" + "imageuploadtype": "minio" } ``` diff --git a/docs/guides/s3-image-upload.md b/docs/guides/s3-image-upload.md index dbbef474..ff9598a2 100644 --- a/docs/guides/s3-image-upload.md +++ b/docs/guides/s3-image-upload.md @@ -63,7 +63,7 @@ { "production": { ... - "imageUploadType": "s3", + "imageuploadtype": "s3", "s3": { "accessKeyId": "YOUR_S3_ACCESS_KEY_ID", "secretAccessKey": "YOUR_S3_ACCESS_KEY", |