Skip to content

Commit

Permalink
- treat authToken and userid differently. Before, userid and authtok…
Browse files Browse the repository at this point in the history
…en had the same values.
  • Loading branch information
ritzalam committed Feb 2, 2015
1 parent fd061d8 commit b91b708
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Expand Up @@ -37,7 +37,7 @@ void createMeeting2(String meetingID, String externalMeetingID, String meetingNa
void setUserStatus(String meetingID, String userID, String status, Object value);
void getUsers(String meetingID, String requesterID);
void userLeft(String meetingID, String userID, String sessionId);
void userJoin(String meetingID, String userID, String sessionId);
void userJoin(String meetingID, String userID, String authToken);
void getCurrentPresenter(String meetingID, String requesterID);
void assignPresenter(String meetingID, String newPresenterID, String newPresenterName, String assignedBy);
void setRecordingStatus(String meetingId, String userId, Boolean recording);
Expand Down
Expand Up @@ -17,7 +17,7 @@ class BigBlueButtonActor(outGW: MessageOutGateway) extends Actor with LogHelper
case msg: CreateMeeting => handleCreateMeeting(msg)
case msg: DestroyMeeting => handleDestroyMeeting(msg)
case msg: KeepAliveMessage => handleKeepAliveMessage(msg)
case msg: GetAllMeetingsRequest => handleGetAllMeetingsRequest(msg)
case msg: GetAllMeetingsRequest => handleGetAllMeetingsRequest(msg)
case msg: InMessage => handleMeetingMessage(msg)
case _ => // do nothing
}
Expand Down
Expand Up @@ -169,8 +169,8 @@ class BigBlueButtonInGW(bbbGW: BigBlueButtonGateway, presUtil: PreuploadedPresen
bbbGW.accept(new UserLeaving(meetingID, userID, sessionId))
}

def userJoin(meetingID: String, userID: String, sessionId: String):Unit = {
bbbGW.accept(new UserJoining(meetingID, userID, sessionId))
def userJoin(meetingID: String, userID: String, authToken: String):Unit = {
bbbGW.accept(new UserJoining(meetingID, userID, authToken))
}

def assignPresenter(meetingID: String, newPresenterID: String, newPresenterName: String, assignedBy: String):Unit = {
Expand Down

0 comments on commit b91b708

Please sign in to comment.