Include room session id in "joined" events.

This helps with matching signaling sessions with sessions in Talk.
This commit is contained in:
Joachim Bauch
2021-12-17 16:02:22 +01:00
parent 468470d128
commit 76ad24ca62
4 changed files with 15 additions and 5 deletions
+4 -3
View File
@@ -632,9 +632,10 @@ type EventServerMessage struct {
}
type EventServerMessageSessionEntry struct {
SessionId string `json:"sessionid"`
UserId string `json:"userid"`
User *json.RawMessage `json:"user,omitempty"`
SessionId string `json:"sessionid"`
UserId string `json:"userid"`
User *json.RawMessage `json:"user,omitempty"`
RoomSessionId string `json:"roomsessionid,omitempty"`
}
// MCU-related types