addition to issue #473 - make meetingID required parameter to create call
git-svn-id: http://bigbluebutton.googlecode.com/svn/trunk@4308 af16638f-c34d-0410-8cfa-b39d5352b314
This commit is contained in:
parent
08242fb324
commit
b3be60e2df
@ -78,8 +78,12 @@ class ApiController {
|
||||
return
|
||||
}
|
||||
|
||||
log.debug("passed parameter validation - creating conference");
|
||||
String mtgID = params.meetingID
|
||||
if (StringUtils.isEmpty(mtgID)) {
|
||||
invalid("missingParamMeetingID", "You must specify a meeting ID for the meeting.");
|
||||
return
|
||||
}
|
||||
log.debug("passed parameter validation - creating conference");
|
||||
String attPW = params.attendeePW
|
||||
String modPW = params.moderatorPW
|
||||
String voiceBr = params.voiceBridge
|
||||
|
Loading…
Reference in New Issue
Block a user