cool breeze
cool breeze

Reputation: 4811

Where is the source for parses ACL?

I'm looking at the parse server that was released, and looking at the spec I see a reference to 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 searched the repo and I don't see any ACL related classes and I couldn't find a relevant library in package.json that it might be using.

Where is it getting this functionality from?

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

Upvotes: 5

Views: 139

Answers (1)

Related Questions