Where is the source for ACL analysis?

I look at the analysis server that was released, and, looking at the specification, I see a link to the methods:

equal(object.getACL().getReadAccess(user), true); equal(object.getACL().getWriteAccess(user), true); equal(object.getACL().getPublicReadAccess(), false); equal(object.getACL().getPublicWriteAccess(), false); ok(object.get("ACL")); 

I was looking for a repo and I do not see classes related to ACLs and I could not find the appropriate library in package.json that it could use.

Where do you get this functionality from?

Link: https://github.com/ParsePlatform/parse-server/blob/master/spec/ParseACL.spec.js

+5
source share

Source: https://habr.com/ru/post/1241826/


All Articles