Skip to content
Snippets Groups Projects
Unverified Commit 3c0c4f0b authored by Anton Georgiev's avatar Anton Georgiev Committed by GitHub
Browse files

Merge pull request #12114 from ramonlsouza/remove-webcam-default-settings

Remove webcamsDefaultPlacement unused settings
parents 30880e5c d6e3f137
No related branches found
No related tags found
No related merge requests found
import React, { createContext, useReducer, useEffect } from 'react'; import React, { createContext, useReducer, useEffect } from 'react';
import Storage from '/imports/ui/services/storage/session'; import Storage from '/imports/ui/services/storage/session';
const { webcamsDefaultPlacement } = Meteor.settings.public.layout;
export const LayoutContext = createContext(); export const LayoutContext = createContext();
const initialState = { const initialState = {
...@@ -50,7 +48,7 @@ const initialState = { ...@@ -50,7 +48,7 @@ const initialState = {
}, },
webcamsAreaUserSetsHeight: 0, webcamsAreaUserSetsHeight: 0,
webcamsAreaUserSetsWidth: 0, webcamsAreaUserSetsWidth: 0,
webcamsPlacement: webcamsDefaultPlacement || 'top', webcamsPlacement: 'top',
presentationAreaSize: { presentationAreaSize: {
width: 0, width: 0,
height: 0, height: 0,
......
...@@ -400,7 +400,6 @@ public: ...@@ -400,7 +400,6 @@ public:
autoSwapLayout: false autoSwapLayout: false
hidePresentation: false hidePresentation: false
showParticipantsOnLogin: true showParticipantsOnLogin: true
webcamsDefaultPlacement: 'top'
media: media:
stunTurnServersFetchAddress: '/bigbluebutton/api/stuns' stunTurnServersFetchAddress: '/bigbluebutton/api/stuns'
cacheStunTurnServers: true cacheStunTurnServers: true
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment