Ido Naveh
Ido Naveh

Reputation: 2492

How to give users a permissions to read an object on Parse.com table?


I want to give only a couple of users to read an object in my Parse.com table.
It goes like this:
User enters information and a name of user that will be able to read this information
The information has been sent to servers
Only the user that has permission to read can read this information.
How to do it?

Upvotes: 1

Views: 63

Answers (1)

Björn Kaiser
Björn Kaiser

Reputation: 9912

Parse does not offer that on a column level, you can only set an ACL on a per-object or per-class level. You can read more about Data & Security in the documentation [1] of Parse

[1] https://parse.com/docs/data#data_security

Upvotes: 1

Related Questions