radiks
radiks copied to clipboard
What is the best way to fetch GroupInvitations?
I have met the same problem as well, my another question is how can i get my invitation from other people's userGroup
You could create a model that looks like this
{
from: `username of admin`,
to: `username of invitee`,
id: `invitation id`
}
Then you could query the to field with your username.
Maybe?
Originally posted by @xanderjakeq in https://github.com/blockstack/radiks/issues/45#issuecomment-585306195
The above is my first thoughts. @friedger mentioned it is a privacy concern. So what the best way to find group invitations?
Usually you want to use private 3rd party communication channels...
The inbox idea could be a solution: https://forum.blockstack.org/t/proposal-gaia-hub-inboxes/5114
Why is it a security issue in the first place? What can you do with knowing 2 names and an invitation id?
@xanderjakeq The relationship between the two users is published in the context of the app. The public does not need to know that one person is inviting another person. It is a private transaction. The library should keep it private.