On my parse based application, each user will have a list of notes that are private to him by default. The user will be able to invite other users (identified by their email address) to view the notes.
I want to use ACL for that, but was wondering what should I do if the invited user is not registered yet as a Parse user on invitation. In that case, the notes creator user cannot add him to the note's ACL since there is no ParseUser
object yet.
What is the best solution for this type of invitation?
Can I use ACL for this or do I have to manage the access myself?