File tree Expand file tree Collapse file tree 3 files changed +11
-42
lines changed Expand file tree Collapse file tree 3 files changed +11
-42
lines changed Original file line number Diff line number Diff line change 11# Root ACL resource for the user account
22@prefix acl: <http://www.w3.org/ns/auth/acl#>.
33
4- <#owner>
4+ # The homepage is readable by the public
5+ <#public>
56 a acl:Authorization;
7+ acl:agentClass foaf:Agent;
8+ acl:accessTo </>;
9+ acl:mode acl:Read.
610
7- acl:agent <{{webId}}> ;
8-
11+ # The owner has full access to every resource in their pod.
12+ # Other agents have no access rights,
13+ # unless specifically authorized in other .acl resources.
14+ <#owner>
15+ a acl:Authorization;
16+ acl:agent <{{webId}}>;
917 # Optional owner email, to be used for account recovery:
1018 {{#if email}}acl:agent <mailto:{{{email}}}>;{{/if}}
11-
1219 # Set the access to the root storage folder itself
1320 acl:accessTo </>;
14-
1521 # All resources will inherit this authorization, by default
1622 acl:default </>;
17-
1823 # The owner has all of the access modes allowed
1924 acl:mode
2025 acl:Read, acl:Write, acl:Control.
21-
22- # Data is private by default; no other agents get access unless specifically
23- # authorized in other .acls
Load Diff This file was deleted.
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments