mirror of
https://github.com/CommunitySolidServer/CommunitySolidServer.git
synced 2024-10-03 14:55:10 +00:00
20 lines
572 B
Plaintext
20 lines
572 B
Plaintext
# ACL resource for the WebID profile document
|
|
@prefix acl: <http://www.w3.org/ns/auth/acl#>.
|
|
@prefix foaf: <http://xmlns.com/foaf/0.1/>.
|
|
|
|
# The WebID profile is readable by the public.
|
|
# This is required for discovery and verification,
|
|
# e.g. when checking identity providers.
|
|
<#public>
|
|
a acl:Authorization;
|
|
acl:agentClass foaf:Agent;
|
|
acl:accessTo <./card>;
|
|
acl:mode acl:Read.
|
|
|
|
# The owner has full access to the profile
|
|
<#owner>
|
|
a acl:Authorization;
|
|
acl:agent <{{webId}}>;
|
|
acl:accessTo <./card>;
|
|
acl:mode acl:Read, acl:Write, acl:Control.
|