(event, data)
| 36 | }, |
| 37 | |
| 38 | _onRoomUserAdded(event, data) { |
| 39 | const { you } = this; |
| 40 | |
| 41 | if (you.get('uuid') !== data.uuid) { |
| 42 | this._addPeer(data); |
| 43 | } |
| 44 | }, |
| 45 | |
| 46 | _addPeer(attrs) { |
| 47 | const peerAttrs = attrs.peer; |
nothing calls this directly
no outgoing calls
no test coverage detected