forked from bigbluebutton/bigbluebutton
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request bigbluebutton#3397 from riadvice/breakout-rooms-us…
…e-current-presentation Breakout rooms use current presentation slide
- Loading branch information
Showing
20 changed files
with
405 additions
and
423 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
50 changes: 27 additions & 23 deletions
50
...ge/src/main/java/org/bigbluebutton/messages/payload/CreateBreakoutRoomRequestPayload.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,31 @@ | ||
package org.bigbluebutton.messages.payload; | ||
|
||
public class CreateBreakoutRoomRequestPayload { | ||
public final String breakoutId; | ||
public final String parentId; // The main meeting internal id | ||
public final String name; // The name of the breakout room | ||
public final String voiceConfId; // The voice conference id | ||
public final String viewerPassword; | ||
public final String moderatorPassword; | ||
public final Integer durationInMinutes; // The duration of the breakout room | ||
public final String defaultPresentationURL; | ||
public final Boolean record; | ||
|
||
public CreateBreakoutRoomRequestPayload(String breakoutId, String parentId, String name, | ||
String voiceConfId, String viewerPassword, String moderatorPassword, | ||
Integer duration, String defaultPresentationURL, Boolean record) { | ||
this.breakoutId = breakoutId; | ||
this.parentId = parentId; | ||
this.name = name; | ||
this.voiceConfId = voiceConfId; | ||
this.viewerPassword = viewerPassword; | ||
this.moderatorPassword = moderatorPassword; | ||
this.durationInMinutes = duration; | ||
this.defaultPresentationURL = defaultPresentationURL; | ||
this.record = record; | ||
} | ||
public final String breakoutId; | ||
public final String parentId; // The main meeting internal id | ||
public final String name; // The name of the breakout room | ||
public final String voiceConfId; // The voice conference id | ||
public final String viewerPassword; | ||
public final String moderatorPassword; | ||
public final Integer durationInMinutes; // The duration of the breakout room | ||
public final String sourcePresentationId; | ||
public final Integer sourcePresentationSlide; | ||
public final Boolean record; | ||
|
||
public CreateBreakoutRoomRequestPayload(String breakoutId, String parentId, | ||
String name, String voiceConfId, String viewerPassword, | ||
String moderatorPassword, Integer duration, | ||
String sourcePresentationId, Integer sourcePresentationSlide, | ||
Boolean record) { | ||
this.breakoutId = breakoutId; | ||
this.parentId = parentId; | ||
this.name = name; | ||
this.voiceConfId = voiceConfId; | ||
this.viewerPassword = viewerPassword; | ||
this.moderatorPassword = moderatorPassword; | ||
this.durationInMinutes = duration; | ||
this.sourcePresentationId = sourcePresentationId; | ||
this.sourcePresentationSlide = sourcePresentationSlide; | ||
this.record = record; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.