Files
CommunitySolidServer/config/ldp/metadata-parser/parsers/cookie.json
Joachim Van Herwegen a47f5236ef feat: Full rework of account management
Complete rewrite of the account management and related systems.
Makes the architecture more modular,
allowing for easier extensions and configurations.
2023-10-06 11:04:40 +02:00

22 lines
750 B
JSON

{
"@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^6.0.0/components/context.jsonld",
"@graph": [
{
"comment": "The name of the cookie to identify being logged in with a CSS account.",
"@id": "urn:solid-server:default:value:accountCookieName",
"valueRaw": "css-account"
},
{
"comment": "Converts cookies into RDF metadata.",
"@id": "urn:solid-server:default:CookieParser",
"@type": "CookieParser",
"cookieMap": [
{
"CookieParser:_cookieMap_key": { "@id": "urn:solid-server:default:value:accountCookieName" },
"CookieParser:_cookieMap_value": "urn:npm:solid:community-server:http:accountCookie",
}
]
}
]
}