I'am modelling a "like" activity in the following way using Parse.com.
Activity object has 4 attributes
type: "like", "share" etc
fromUser: pointer to user who is liking
toUser: pointer to object's creator
object: pointer to the object liked.
After setting ACLs on the object,
When I try to save a "like" activity on an object someone else has created, I get an "object not found" error which I think is ACL related.
When saving a "like" activity on an object I created, all is fine.
Is there something wrong with the way I have modelled this activity?