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.js 562B

12345678910111213141516171819202122
  1. /* @flow */
  2. import { SET_CONFIG } from './actionTypes';
  3. /**
  4. * Sets the configuration represented by the feature base/config. The
  5. * configuration is defined and consumed by the library lib-jitsi-meet but some
  6. * of its properties are consumed by the application jitsi-meet as well.
  7. *
  8. * @param {Object} config - The configuration to be represented by the feature
  9. * base/config.
  10. * @returns {{
  11. * type: SET_CONFIG,
  12. * config: Object
  13. * }}
  14. */
  15. export function setConfig(config: Object) {
  16. return {
  17. type: SET_CONFIG,
  18. config
  19. };
  20. }