Open
Description
I want to make that in each room that I create only two users can be added as maximum.
I have in my client this code:
RoomX.addEventListener ('room-connected', function (roomEvent) {
Var options = {metadata: {type: 'publisher'}};
Var enableSimulcast = getParameterByName ('simulcast');
If (enableSimulcast) options.simulcast = {numSpatialLayers: 2};
But I think that is not where I should modify the parameter of the maximum number of users per room because I can add more.
Could anyone help me?