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.

actions.any.js 426B

12345678910111213141516171819202122232425262728
  1. // @flow
  2. import {
  3. PARTICIPANTS_PANE_CLOSE,
  4. PARTICIPANTS_PANE_OPEN
  5. } from './actionTypes';
  6. /**
  7. * Action to close the participants pane.
  8. *
  9. * @returns {Object}
  10. */
  11. export const close = () => {
  12. return {
  13. type: PARTICIPANTS_PANE_CLOSE
  14. };
  15. };
  16. /**
  17. * Action to open the participants pane.
  18. *
  19. * @returns {Object}
  20. */
  21. export const open = () => {
  22. return {
  23. type: PARTICIPANTS_PANE_OPEN
  24. };
  25. };