openvidu-server: add openvidu.recording.composed-url to GET /config

pull/370/head
pabloFuente 2019-10-09 11:06:10 +02:00
parent 96ea74899d
commit 27c67952cc
1 changed files with 4 additions and 0 deletions

View File

@ -111,6 +111,10 @@ public class ConfigRestController {
json.addProperty("openviduRecordingNotification", openviduConfig.getOpenViduRecordingNotification().name());
json.addProperty("openviduRecordingCustomLayout", openviduConfig.getOpenviduRecordingCustomLayout());
json.addProperty("openviduRecordingAutostopTimeout", openviduConfig.getOpenviduRecordingAutostopTimeout());
if (openviduConfig.getOpenViduRecordingComposedUrl() != null
&& !openviduConfig.getOpenViduRecordingComposedUrl().isEmpty()) {
json.addProperty("openviduRecordingComposedUrl", openviduConfig.getOpenViduRecordingComposedUrl());
}
}
json.addProperty("openviduWebhook", openviduConfig.isWebhookEnabled());
if (openviduConfig.isWebhookEnabled()) {