-
Notifications
You must be signed in to change notification settings - Fork 303
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #911 from solid/feature/check-quota
Code to check quota on backend
- Loading branch information
Showing
13 changed files
with
2,031 additions
and
1,772 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
@prefix dct: <http://purl.org/dc/terms/>. | ||
@prefix pim: <http://www.w3.org/ns/pim/space#>. | ||
@prefix solid: <http://www.w3.org/ns/solid/terms#>. | ||
@prefix unit: <http://www.w3.invalid/ns#>. | ||
|
||
<> | ||
a pim:ConfigurationFile; | ||
|
||
dct:description "Administrative settings for the POD that the user can only read." . | ||
|
||
</> | ||
solid:storageQuota "25000000" . | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
@prefix acl: <http://www.w3.org/ns/auth/acl#>. | ||
@prefix foaf: <http://xmlns.com/foaf/0.1/>. | ||
|
||
<#owner> | ||
a acl:Authorization; | ||
|
||
acl:agent | ||
<{{webId}}>; | ||
|
||
acl:accessTo <./serverSide.ttl>; | ||
|
||
acl:mode acl:Read . | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.