You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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. }