Persist webcamBackground in the client

This commit is contained in:
Daniel Petri Rocha 2024-07-09 12:13:11 +00:00
parent 063b77a0fc
commit a71527a825
3 changed files with 4 additions and 1 deletions

View File

@ -125,7 +125,6 @@ class OldMeetingMsgHdlrActor(val olgMsgGW: OldMessageReceivedGW)
msg.body.extId, msg.body.name, msg.body.role, msg.body.avatar, msg.body.webcamBackground, msg.body.guest,
msg.body.guestStatus,
msg.body.clientType))
}
def handlePresenterUnassignedEvtMsg(msg: PresenterUnassignedEvtMsg): Unit = {

View File

@ -29,6 +29,7 @@ export default async function addUserPersistentData(user) {
presenter: Boolean,
locked: Boolean,
avatar: String,
webcamBackground: String,
clientType: String,
left: Boolean,
effectiveConnectionType: null,
@ -42,6 +43,7 @@ export default async function addUserPersistentData(user) {
role,
token,
avatar,
webcamBackground,
guest,
color,
pin,
@ -55,6 +57,7 @@ export default async function addUserPersistentData(user) {
role,
token,
avatar,
webcamBackground,
guest,
color,
pin,

View File

@ -30,6 +30,7 @@ export default async function addUser(meetingId, userData) {
presenter: Boolean,
locked: Boolean,
avatar: String,
webcamBackground: String,
color: String,
pin: Boolean,
clientType: String,