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.

constants.js 665B

12345678910111213141516171819202122
  1. // @flow
  2. /**
  3. * Key for this feature.
  4. */
  5. export const FEATURE_KEY = 'features/breakout-rooms';
  6. /**
  7. * The type of json-message which indicates that json carries
  8. * a request for a participant to move to a specified room.
  9. */
  10. export const JSON_TYPE_MOVE_TO_ROOM_REQUEST = `${FEATURE_KEY}/move-to-room`;
  11. /**
  12. * The type of json-message which indicates that json carries a request to remove a specified breakout room.
  13. */
  14. export const JSON_TYPE_REMOVE_BREAKOUT_ROOM = `${FEATURE_KEY}/remove`;
  15. /**
  16. * The type of json-message which indicates that json carries breakout rooms data.
  17. */
  18. export const JSON_TYPE_UPDATE_BREAKOUT_ROOMS = `${FEATURE_KEY}/update`;