Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

actions.js 467B

1234567891011121314151617181920
  1. /* @flow */
  2. import { SET_CONNECTION_STATE } from './actionTypes';
  3. /**
  4. * Sets the conference connection state of the testing feature.
  5. *
  6. * @param {string} connectionState - This is the lib-jitsi-meet event name. Can
  7. * be on of:
  8. * @returns {{
  9. * type: SET_CONNECTION_STATE,
  10. * connectionState: string
  11. * }}
  12. */
  13. export function setConnectionState(connectionState: string) {
  14. return {
  15. type: SET_CONNECTION_STATE,
  16. connectionState
  17. };
  18. }