Fix default of media_store_path

This commit is contained in:
Olivier 'reivilibre 2024-11-13 22:20:43 +00:00
parent c7fbf7bfac
commit d6eec624c9
2 changed files with 3 additions and 3 deletions

View file

@ -1834,7 +1834,7 @@ enable_media_repo: false
--- ---
### `media_store_path` ### `media_store_path`
*(string|null)* Directory where uploaded images and attachments are stored. Defaults to `null`. *(string)* Directory where uploaded images and attachments are stored. Defaults to `"media_store"`.
Example configuration: Example configuration:
```yaml ```yaml

View file

@ -1399,9 +1399,9 @@
"examples": [false] "examples": [false]
}, },
"media_store_path": { "media_store_path": {
"type": ["string", "null"], "type": "string",
"description": "Directory where uploaded images and attachments are stored.", "description": "Directory where uploaded images and attachments are stored.",
"default": null, "default": "media_store",
"examples": ["DATADIR/media_store"] "examples": ["DATADIR/media_store"]
}, },
"max_pending_media_uploads": { "max_pending_media_uploads": {