Joachim Van Herwegen 13c49045d4 feat: Support acl authorization for IDP components
Configuration has been updated so the IDP requests
also pass through an Authorization component.
A new config option was added to choose
which authorization scheme to use for the IDP.
2021-10-07 15:51:11 +02:00

21 lines
653 B
JSON

{
"@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^1.0.0/components/context.jsonld",
"@graph": [
{
"comment": [
"DO NOT USE IN PRODUCTION. ONLY FOR DEVELOPMENT, TESTING, OR DEBUGGING.",
"This extractor always sets the credentials to the fixed value."
],
"@id": "urn:solid-server:default:CredentialsExtractor",
"@type": "UnionCredentialsExtractor",
"extractors": [
{
"@type": "UnsecureConstantCredentialsExtractor",
"agent": "http://test.com/card#me"
},
{ "@type": "PublicCredentialsExtractor" }
]
}
]
}