Added the user-room token created from admin when we access a room
This commit is contained in:
parent
9eb4206fe0
commit
dd79f7d0f4
13 changed files with 63 additions and 2 deletions
|
@ -151,6 +151,11 @@ export class SocketManager implements ZoneEventListener {
|
|||
joinRoomMessage.setName(client.name);
|
||||
joinRoomMessage.setPositionmessage(ProtobufUtils.toPositionMessage(client.position));
|
||||
joinRoomMessage.setTagList(client.tags);
|
||||
|
||||
if (client.userRoomToken) {
|
||||
joinRoomMessage.setUserroomtoken(client.userRoomToken);
|
||||
}
|
||||
|
||||
if (client.visitCardUrl) {
|
||||
joinRoomMessage.setVisitcardurl(client.visitCardUrl);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue