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

pull/127/head
pabloFuente 2018-10-02 11:53:14 +02:00
parent 0098d26759
commit b59bd34398
1 changed files with 1 additions and 0 deletions

View File

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