openvidu-server: toJson() method adds "createdAt" property of MediaEndpoint

This commit is contained in:
pabloFuente 2018-10-02 11:53:14 +02:00
parent 0098d26759
commit b59bd34398

View File

@ -495,6 +495,7 @@ public abstract class MediaEndpoint {
public JsonObject toJson() {
JsonObject json = new JsonObject();
json.addProperty("createdAt", this.createdAt);
return json;
}