Skip to content

Commit d45d65d

Browse files
Add a /public folder in new accounts (#569)
1 parent 928ff50 commit d45d65d

File tree

1 file changed

+19
-0
lines changed
  • default-templates/new-account/public

1 file changed

+19
-0
lines changed
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# ACL resource for the public folder
2+
@prefix acl: <http://www.w3.org/ns/auth/acl#>.
3+
@prefix foaf: <http://xmlns.com/foaf/0.1/>.
4+
5+
# The owner has all permissions
6+
<#owner>
7+
a acl:Authorization;
8+
acl:agent <{{webId}}>;
9+
acl:accessTo <./>;
10+
acl:defaultForNew <./>;
11+
acl:mode acl:Read, acl:Write, acl:Control.
12+
13+
# The public has read permissions
14+
<#public>
15+
a acl:Authorization;
16+
acl:agentClass foaf:Agent;
17+
acl:accessTo <./>;
18+
acl:defaultForNew <./>;
19+
acl:mode acl:Read.

0 commit comments

Comments
 (0)