|
@@ -125,13 +125,18 @@ function mapStateToProps(state) {
|
125
|
125
|
locked,
|
126
|
126
|
password
|
127
|
127
|
} = state['features/base/conference'];
|
|
128
|
+ const {
|
|
129
|
+ lockRoomGuestEnabled,
|
|
130
|
+ roomPasswordNumberOfDigits
|
|
131
|
+ } = state['features/base/config'];
|
128
|
132
|
|
129
|
133
|
return {
|
130
|
|
- _canEditPassword: isLocalParticipantModerator(state, state['features/base/config'].lockRoomGuestEnabled),
|
|
134
|
+ _canEditPassword: isLocalParticipantModerator(state, lockRoomGuestEnabled),
|
131
|
135
|
_conference: conference,
|
132
|
136
|
_dialIn: state['features/invite'],
|
133
|
137
|
_locked: locked,
|
134
|
138
|
_password: password,
|
|
139
|
+ _passwordNumberOfDigits: roomPasswordNumberOfDigits,
|
135
|
140
|
_showE2ee: Boolean(e2eeSupported)
|
136
|
141
|
};
|
137
|
142
|
}
|