You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 25, 2019. It is now read-only.
Currently, in order to create a new ACL resource, one has to do something like:
leturl='https://example.com/resource1'solid.web.options(url).then(response=>{letaclUrl=response.aclAbsoluteUrl()letps=newPermissionSet(url,aclUrl,response.isContainer(),{ rdf, webClient })// .. set up permissions herereturnps.save()})
A helper method would make this process easier. So, instead:
leturl='https://example.com/resource1'solid.newAclForResource(url).then(permissionSet=>{// set up permissionsreturnpermissionSet.save()})