feat: lobby feature
The lobby feature adds the possibility to lock a meeting and only allow people in after virtually knocking and going through formal approval
This commit is contained in:
committed by
Zoltan Bettenbuk
parent
338c960215
commit
475a2ae596
@@ -119,7 +119,7 @@ export function connect(id: ?string, password: ?string) {
|
||||
*/
|
||||
function _onConnectionDisconnected(message: string) {
|
||||
unsubscribe();
|
||||
dispatch(_connectionDisconnected(connection, message));
|
||||
dispatch(connectionDisconnected(connection, message));
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -195,7 +195,7 @@ export function connect(id: ?string, password: ?string) {
|
||||
* message: string
|
||||
* }}
|
||||
*/
|
||||
function _connectionDisconnected(connection: Object, message: string) {
|
||||
export function connectionDisconnected(connection: Object, message: string) {
|
||||
return {
|
||||
type: CONNECTION_DISCONNECTED,
|
||||
connection,
|
||||
|
||||
@@ -9,6 +9,7 @@ import { configureInitialDevices } from '../devices';
|
||||
import { getBackendSafeRoomName } from '../util';
|
||||
|
||||
export {
|
||||
connectionDisconnected,
|
||||
connectionEstablished,
|
||||
connectionFailed,
|
||||
setLocationURL
|
||||
|
||||
Reference in New Issue
Block a user