From 51b9634bcd4df3ab796b29d7f0999a0f70fb7089 Mon Sep 17 00:00:00 2001 From: Richard Alam Date: Thu, 26 Oct 2017 14:14:00 -0700 Subject: [PATCH] - cahpterBreakLength config option --- akka-bbb-apps/src/main/resources/application.conf | 4 ++++ .../main/scala/org/bigbluebutton/SystemConfiguration.scala | 1 + 2 files changed, 5 insertions(+) diff --git a/akka-bbb-apps/src/main/resources/application.conf b/akka-bbb-apps/src/main/resources/application.conf index 4de5614cf6..826aa0ec08 100755 --- a/akka-bbb-apps/src/main/resources/application.conf +++ b/akka-bbb-apps/src/main/resources/application.conf @@ -86,4 +86,8 @@ apps { voiceConf { recordPath = "/var/freeswitch/meetings" +} + +recording { + chapterBreakLengthInMinutes = 180 } \ No newline at end of file diff --git a/akka-bbb-apps/src/main/scala/org/bigbluebutton/SystemConfiguration.scala b/akka-bbb-apps/src/main/scala/org/bigbluebutton/SystemConfiguration.scala index 840843e845..cd78061b29 100755 --- a/akka-bbb-apps/src/main/scala/org/bigbluebutton/SystemConfiguration.scala +++ b/akka-bbb-apps/src/main/scala/org/bigbluebutton/SystemConfiguration.scala @@ -63,4 +63,5 @@ trait SystemConfiguration { lazy val applyPermissionCheck = Try(config.getBoolean("apps.checkPermissions")).getOrElse(false) lazy val voiceConfRecordPath = Try(config.getString("voiceConf.recordPath")).getOrElse("/var/freeswitch/meetings") + lazy val recordingChapterBreakLenghtInMinutes = Try(config.getInt("recording.chapterBreakLengthInMinutes")).getOrElse(180) }