Join and end request passwords still required
This commit is contained in:
parent
9c6974741b
commit
65a7ecacbb
@ -7,6 +7,7 @@ import org.bigbluebutton.api.model.shared.Checksum;
|
||||
import org.bigbluebutton.api.model.shared.ModeratorPassword;
|
||||
|
||||
import javax.validation.Valid;
|
||||
import javax.validation.constraints.NotEmpty;
|
||||
import java.util.Map;
|
||||
|
||||
public class EndMeeting extends RequestWithChecksum<EndMeeting.Params> {
|
||||
@ -27,6 +28,7 @@ public class EndMeeting extends RequestWithChecksum<EndMeeting.Params> {
|
||||
private String meetingID;
|
||||
|
||||
@PasswordConstraint
|
||||
@NotEmpty(message = "You must provide the moderator password")
|
||||
private String password;
|
||||
|
||||
@Valid
|
||||
|
@ -35,6 +35,7 @@ public class JoinMeeting extends RequestWithChecksum<JoinMeeting.Params> {
|
||||
private String fullName;
|
||||
|
||||
@PasswordConstraint
|
||||
@NotEmpty(message = "You must provide either the moderator or attendee password")
|
||||
private String password;
|
||||
|
||||
@IsBooleanConstraint(message = "Guest must be a boolean value (true or false)")
|
||||
|
Loading…
Reference in New Issue
Block a user