mirror of https://github.com/OpenVidu/openvidu.git
openvidu-server: participantJoined CDR/webhook event with client and server data
parent
8da682162d
commit
b8a53fdb7e
|
@ -45,6 +45,8 @@ public class CDREventParticipant extends CDREventEnd {
|
||||||
json.addProperty("location",
|
json.addProperty("location",
|
||||||
this.participant.getLocation() != null ? this.participant.getLocation().toString() : "unknown");
|
this.participant.getLocation() != null ? this.participant.getLocation().toString() : "unknown");
|
||||||
json.addProperty("platform", this.participant.getPlatform());
|
json.addProperty("platform", this.participant.getPlatform());
|
||||||
|
json.addProperty("clientData", this.participant.getClientMetadata());
|
||||||
|
json.addProperty("serverData", this.participant.getServerMetadata());
|
||||||
return json;
|
return json;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue