Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

actions.js 544B

12345678910111213141516171819202122
  1. /* @flow */
  2. import { SIP_GW_INVITE_ROOMS } from './actionTypes';
  3. /**
  4. * Invites room participants to the conference through the SIP Jibri service.
  5. *
  6. * @param {JitsiMeetConference} conference - The conference to which the rooms
  7. * will be invited to.
  8. * @param {Immutable.List} rooms - The list of the "videosipgw" type items to
  9. * invite.
  10. * @returns {void}
  11. */
  12. export function inviteVideoRooms(
  13. conference: Object,
  14. rooms: Object) {
  15. return {
  16. type: SIP_GW_INVITE_ROOMS,
  17. conference,
  18. rooms
  19. };
  20. }