Update bigbluebutton-web/grails-app/controllers/org/bigbluebutton/web/controllers/ApiController.groovy
Co-authored-by: Gustavo Trott <gustavo@trott.com.br>
This commit is contained in:
parent
bc7c3143ba
commit
3dc4cb28d9
@ -127,7 +127,12 @@ class ApiController {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
if(params.isBreakout == "true") {
|
Boolean isBreakoutRoom = false
|
||||||
|
if (!StringUtils.isEmpty(params.isBreakout)) {
|
||||||
|
isBreakoutRoom = Boolean.parseBoolean(params.isBreakout)
|
||||||
|
}
|
||||||
|
|
||||||
|
if(isBreakoutRoom) {
|
||||||
if(!params.parentMeetingID) {
|
if(!params.parentMeetingID) {
|
||||||
invalid("parentMeetingIDMissing", "No parent meeting ID was provided for the breakout room")
|
invalid("parentMeetingIDMissing", "No parent meeting ID was provided for the breakout room")
|
||||||
return
|
return
|
||||||
|
Loading…
Reference in New Issue
Block a user