Commit 4d823d3b by Kim Peace

Removed some todos that confirmed

parent f1563ade
...@@ -173,4 +173,4 @@ Common.startCollaboration = function (collaborationType) { ...@@ -173,4 +173,4 @@ Common.startCollaboration = function (collaborationType) {
NativeBridgeDelegate.finishAllCollaboration(); NativeBridgeDelegate.finishAllCollaboration();
} }
NativeBridgeDelegate.startCollaboration(collaborationType); NativeBridgeDelegate.startCollaboration(collaborationType);
}; };
\ No newline at end of file
...@@ -261,7 +261,6 @@ ChatRoom.renderCollaborationMessage = function (message, isToday, isOtherYear) { ...@@ -261,7 +261,6 @@ ChatRoom.renderCollaborationMessage = function (message, isToday, isOtherYear) {
userCount: userInCollaboration.length, userCount: userInCollaboration.length,
userList: displayUserList, userList: displayUserList,
insertDate: message.insertDate, insertDate: message.insertDate,
// TODO: peacekim:: should check collaborationInfo.collaborationType is string or number
collaborationType: strCollaborationType, collaborationType: strCollaborationType,
meetingId: meetingID, meetingId: meetingID,
isToday: isToday, isToday: isToday,
......
...@@ -9,7 +9,6 @@ FermiWebSocketBridge.requestHostChange = function (loginID) { ...@@ -9,7 +9,6 @@ FermiWebSocketBridge.requestHostChange = function (loginID) {
FermiWebSocketBridge.shareFileHost = function (collaborationType) { FermiWebSocketBridge.shareFileHost = function (collaborationType) {
fw.sendToMsg("others", "SHARE_FILE_HOST", { fw.sendToMsg("others", "SHARE_FILE_HOST", {
// TODO: Peacekim check collaboration type as coviewType
collaborationType: collaborationType, collaborationType: collaborationType,
}); });
}; };
......
...@@ -191,9 +191,7 @@ CollaborationFeature.didReceiveLoginResponseMessage = async function () { ...@@ -191,9 +191,7 @@ CollaborationFeature.didReceiveLoginResponseMessage = async function () {
case COLLABORATION_JOIN_TYPE.INVITED: case COLLABORATION_JOIN_TYPE.INVITED:
// fall through // fall through
case COLLABORATION_JOIN_TYPE.ATTENDEE: case COLLABORATION_JOIN_TYPE.ATTENDEE:
// TODO:: here to update host
coview_api.JoinRoom(globalUserInfo.roomId, globalUserInfo.coWorkType); coview_api.JoinRoom(globalUserInfo.roomId, globalUserInfo.coWorkType);
break; break;
case COLLABORATION_JOIN_TYPE.HOST: case COLLABORATION_JOIN_TYPE.HOST:
let deleteRoomResult = JSON.parse( let deleteRoomResult = JSON.parse(
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment