mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2026-03-06 11:40:21 +00:00
* feat: Returns an error on join request with no display name. When someone tries to join a room with lobby enabled and display name is not set returns an error. * squash: Fixes handling DISPLAY_NAME_REQUIRED with preJoin disabled. * squash: Fixes mobile build. * squash: Move isDisplayNameRequired redux state in lobby and introduces isDisplayNameRequiredError. * squash: Drops unused isDisplayNameRequired. This was used on showing prejoin when connection was established on showing prejoin. We no longer establish it at that time, so it is not possible to hit it and act on it.
15 lines
554 B
TypeScript
15 lines
554 B
TypeScript
import { IStore } from '../app/types';
|
|
|
|
/**
|
|
* Action used to start the conference.
|
|
*
|
|
* @param {Object} options - The config options that override the default ones (if any).
|
|
* @param {boolean} _ignoreJoiningInProgress - If true we won't check the joiningInProgress flag.
|
|
* @returns {Function}
|
|
*/
|
|
export function joinConference(options?: Object, _ignoreJoiningInProgress = false) {
|
|
// eslint-disable-next-line @typescript-eslint/no-empty-function
|
|
return async function(_dispatch: IStore['dispatch'], _getState: IStore['getState']) {
|
|
};
|
|
}
|