Update 6.1. Conference Protocol

This commit is contained in:
Sébastien Blin 2020-09-30 14:24:30 -04:00
parent 0b227d27f4
commit 50bf26f07f
1 changed files with 2 additions and 2 deletions

View File

@ -59,10 +59,10 @@ The Layout is stored as a VectorMapStringString for clients and internally with
``` ```
Layout = { Layout = {
{ {
"uri": "participant", "x":"0", "y":"0", "w": "0", "h": "0" "uri": "participant", "x":"0", "y":"0", "w": "0", "h": "0", "isModerator":true
}, },
{ {
"uri": "participant1", "x":"0", "y":"0", "w": "0", "h": "0" "uri": "participant1", "x":"0", "y":"0", "w": "0", "h": "0", "isModerator":false
} }
(...) (...)
} }