Disable unused jitsi options
This commit is contained in:
parent
34afe16dca
commit
7c60cca171
1 changed files with 17 additions and 1 deletions
|
@ -99,6 +99,22 @@ function JitsiRoom({ isJitsiRoom, setIsJitsiRoom, jitsiCallId, setJitsiCallId })
|
||||||
disablePolls: true,
|
disablePolls: true,
|
||||||
prejoinConfig: { enabled: false },
|
prejoinConfig: { enabled: false },
|
||||||
liveStreaming: { enabled: false },
|
liveStreaming: { enabled: false },
|
||||||
|
maxFullResolutionParticipants: 1,
|
||||||
|
startWithVideoMuted: true,
|
||||||
|
disableProfile: true,
|
||||||
|
toolbarButtons: [
|
||||||
|
'camera',
|
||||||
|
'desktop',
|
||||||
|
'fullscreen',
|
||||||
|
'invite',
|
||||||
|
'microphone',
|
||||||
|
'noisesuppression',
|
||||||
|
'settings',
|
||||||
|
'sharedvideo',
|
||||||
|
'shortcuts',
|
||||||
|
'tileview',
|
||||||
|
'videoquality'
|
||||||
|
],
|
||||||
|
|
||||||
constraints: {
|
constraints: {
|
||||||
video: {
|
video: {
|
||||||
|
@ -133,7 +149,7 @@ function JitsiRoom({ isJitsiRoom, setIsJitsiRoom, jitsiCallId, setJitsiCallId })
|
||||||
resolution: 1080,
|
resolution: 1080,
|
||||||
}}
|
}}
|
||||||
interfaceConfigOverwrite={{
|
interfaceConfigOverwrite={{
|
||||||
DISABLE_JOIN_LEAVE_NOTIFICATIONS: true,
|
DISABLE_JOIN_LEAVE_NOTIFICATIONS: true
|
||||||
}}
|
}}
|
||||||
userInfo={{
|
userInfo={{
|
||||||
displayName: getUsername(mx.getUserId()),
|
displayName: getUsername(mx.getUserId()),
|
||||||
|
|
Loading…
Reference in a new issue