You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 14, 2024. It is now read-only.
For now all users that can join the audio stream are admins. I've extended userController by
const role = users.length === 0 ? 'admin' : 'visitor'
const user = {id,name,room,role};
...
const role = usersInVoice.length === 0 ? 'admin' : 'visitor'
const user = {id,name,room,role};
and replaced user:admin with user:user.role. In result, we have two roles of users.
Furthermore, visitors may get Listen button instead of admn'sJoin voice
The text was updated successfully, but these errors were encountered:
Hey @OlegKunitsyn I agree with you,
The Mute button is a good idea will all visitor can talk or not and handle echo sound of visitors with mute button!
For now all users that can join the audio stream are admins. I've extended userController by
and replaced
user:admin
withuser:user.role
. In result, we have two roles of users.Furthermore, visitors may get Listen button instead of admn's Join voice
The text was updated successfully, but these errors were encountered: