Replies: 1 comment
-
This sounds like an excellent idea! I will be working on version 2 soon, and will look into the best way to implement this. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Currently, each
Participant
within aThread
has individual permissions that can be assigned to them. Unless they haveadmin
assigned, they permissions are always set here on the participant.It would be helpful in some circumstances to have roles associated with the
Participant
model:For example, I have a use case where I have teams of people that relate to people one-on-one. 90% of the time the
Participant
s of a thread will be theuser
andteam member
. But sometimes we may have ateam admin
come into the conversation. In our case, we could look at some positional permission on the Participant to know which user is theuser
and which is theteam member
but it would be easier to know that the "regular user" in aThread
is actually theParticipant
with theuser
role.Beta Was this translation helpful? Give feedback.
All reactions