We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e63734e commit 0f6cd51Copy full SHA for 0f6cd51
default-templates/new-account/index.html
@@ -42,6 +42,10 @@ <h1>Data</h1>
42
<span class="lead">Public Folder</span>
43
<span class="badge">public</span>
44
</a>
45
+ <a href="/private/" target="_blank" class="list-group-item">
46
+ <span class="lead">Private Folder</span>
47
+ <span class="badge">private</span>
48
+ </a>
49
</div>
50
</section>
51
default-templates/new-account/private/.acl
@@ -0,0 +1,10 @@
1
+# ACL resource for the private folder
2
+@prefix acl: <http://www.w3.org/ns/auth/acl#>.
3
+
4
+# The owner has all permissions
5
+<#owner>
6
+ a acl:Authorization;
7
+ acl:agent <{{webId}}>;
8
+ acl:accessTo <./>;
9
+ acl:defaultForNew <./>;
10
+ acl:mode acl:Read, acl:Write, acl:Control.
0 commit comments