Skip to content
Snippets Groups Projects
Commit 66395236 authored by deniszgonjanin's avatar deniszgonjanin
Browse files

Small UI tweeks. Removed .actionScriptProperties and .flexProperties from bbb-client/.gitignore

parent c8f583d7
No related branches found
No related tags found
No related merge requests found
.actionScriptProperties
.flexProperties
linker-report.xml
bin
client
......
......@@ -32,6 +32,10 @@ package org.bigbluebutton.main.model.users
public class BBBUser
{
public static const MODERATOR:String = "MODERATOR";
public static const VIEWER:String = "VIEWER";
public static const PRESENTER:String = "PRESENTER";
[Bindable] public var me:Boolean = false;
[Bindable] public var userid:Number;
[Bindable] public var name:String;
......
......@@ -14,6 +14,10 @@ package org.bigbluebutton.modules.breakout.business
import mx.controls.Alert;
import mx.events.CloseEvent;
import org.bigbluebutton.main.api.UserManager;
import org.bigbluebutton.main.model.users.BBBUser;
import org.bigbluebutton.main.model.users.Conference;
public class BreakoutProxy
{
......@@ -106,6 +110,7 @@ package org.bigbluebutton.modules.breakout.business
}
private function startRoom():void{
if (! newRoomHasModerator(usersList)) attendeePW = moderatorPW; //If there is no moderator assigned in the new room, assign everyone as Moderator;
breakoutSO.send("redirectUser", meetingName, moderatorPW, attendeePW, kickUsers, usersList);
}
......@@ -150,5 +155,14 @@ package org.bigbluebutton.modules.breakout.business
}
return false;
}
private function newRoomHasModerator(list:Array):Boolean{
var conference:Conference = UserManager.getInstance().getConference();
for (var i:int = 0; i<list.length; i++){
var user:BBBUser = conference.getParticipant(Number(list[i]));
if (user.role == BBBUser.MODERATOR) return true;
}
return false;
}
}
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment