* Adds initial documentation for sipgw jibri. Also explains enabling the people search service and the request/response that are made around sipgw jibri service. * Fixes add people dialog to invite users and rooms. No invitation is sent when there is nobody to invite. * Reuse some recording strings, by using arguments. * Make sure web also dispatches CONFERENCE_WILL_JOIN. * Introduces new feature videosipgw. * Fixes lint errors. * Renames methods to use people, chatRooms and videoRooms. * Updates to latest lib-jitsi-meet (dc3397b18b).
23 lines
544 B
JavaScript
23 lines
544 B
JavaScript
/* @flow */
|
|
|
|
import { SIP_GW_INVITE_ROOMS } from './actionTypes';
|
|
|
|
/**
|
|
* Invites room participants to the conference through the SIP Jibri service.
|
|
*
|
|
* @param {JitsiMeetConference} conference - The conference to which the rooms
|
|
* will be invited to.
|
|
* @param {Immutable.List} rooms - The list of the "videosipgw" type items to
|
|
* invite.
|
|
* @returns {void}
|
|
*/
|
|
export function inviteVideoRooms(
|
|
conference: Object,
|
|
rooms: Object) {
|
|
return {
|
|
type: SIP_GW_INVITE_ROOMS,
|
|
conference,
|
|
rooms
|
|
};
|
|
}
|