docs: Update config docs

This commit is contained in:
Joachim Van Herwegen 2022-02-09 15:24:53 +01:00
parent cfdd1221f0
commit 225affe42c

View File

@ -25,12 +25,15 @@ and then add the following in your root config:
```json ```json
{ {
"@id": "urn:solid-server:default:MetadataParser", "@id": "urn:solid-server:default:MetadataParser",
"ParallelHandler:_handlers": [ "@type": "ParallelHandler",
"handlers": [
{ "@type": "MyNewParser" } { "@type": "MyNewParser" }
] ]
} }
``` ```
This will add the new parser to the list of metadata parsers. This will add the new parser to the list of metadata parsers.
The `@id` value is needed so Components.js knows which object to add the values to,
and the `@type` is needed so it can interpret the other fields (`handlers` in this case).
Note that generally it is only advised to append to ParallelHandlers or key/value maps. Note that generally it is only advised to append to ParallelHandlers or key/value maps.
In case the order is important this can not be guaranteed over separate files. In case the order is important this can not be guaranteed over separate files.