- cahpterBreakLength config option

This commit is contained in:
Richard Alam 2017-10-26 14:14:00 -07:00
parent c14a946041
commit 51b9634bcd
2 changed files with 5 additions and 0 deletions

View File

@ -86,4 +86,8 @@ apps {
voiceConf {
recordPath = "/var/freeswitch/meetings"
}
recording {
chapterBreakLengthInMinutes = 180
}

View File

@ -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)
}