(event, data)
| 74 | }, |
| 75 | |
| 76 | _onRoomUserRemoved(event, data) { |
| 77 | const peers = this.model; |
| 78 | const peer = peers.findBy('uuid', data.uuid); |
| 79 | |
| 80 | peers.removeObject(peer); |
| 81 | }, |
| 82 | |
| 83 | _onPeerP2PIncomingConnection(event, data) { |
| 84 | const { connection } = data; |
nothing calls this directly
no outgoing calls
no test coverage detected