We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 594cf27 commit 613dd56Copy full SHA for 613dd56
templates/pod/profile/card.acl
@@ -0,0 +1,21 @@
1
+# ACL resource for the WebID profile document
2
+@prefix acl: <http://www.w3.org/ns/auth/acl#>.
3
+@prefix foaf: <http://xmlns.com/foaf/0.1/>.
4
+
5
+# The WebID profile is readable by the public.
6
+# This is required for discovery and verification,
7
+# e.g. when checking identity providers.
8
+<#public>
9
+ a acl:Authorization;
10
+ acl:agentClass foaf:Agent;
11
+ acl:accessTo <./card>;
12
+ acl:mode acl:Read.
13
14
+# The owner has full access to the entire
15
+# profile directory.
16
+<#owner>
17
18
+ acl:agent <{{webId}}>;
19
+ acl:accessTo <./>;
20
+ acl:default <./>;
21
+ acl:mode acl:Read, acl:Write, acl:Control.
0 commit comments