We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently, all resources get a dedicated ACL file, this can be changed to the following to enable the same functionality.
World read on container resources:
@prefix acl: <http://www.w3.org/ns/auth/acl#>. @prefix foaf: <http://xmlns.com/foaf/0.1/>. @prefix target: <./>. :ReadDefault a acl:Authorization; acl:default target:; acl:agentClass foaf:Agent; acl:mode acl:Read. :ReadWriteControl a acl:Authorization; acl:accessTo target:; acl:default target:; acl:agent </profile/card#me>; acl:mode acl:Read, acl:Write, acl:Control.
The text was updated successfully, but these errors were encountered:
This is the method to do this: https://docs.inrupt.com/developer-tools/api/javascript/solid-client/modules/acl_class.html#setpublicdefaultaccess
Sorry, something went wrong.
No branches or pull requests
Currently, all resources get a dedicated ACL file, this can be changed to the following to enable the same functionality.
World read on container resources:
The text was updated successfully, but these errors were encountered: