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 was 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