Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

1234567891011121314151617181920212223242526272829303132
  1. // @flow
  2. export * from './functions.any';
  3. /**
  4. * Removes all analytics related options from the given configuration, in case of a libre build.
  5. *
  6. * @param {*} config - The configuration which needs to be cleaned up.
  7. * @returns {void}
  8. */
  9. export function _cleanupConfig(config: Object) { // eslint-disable-line no-unused-vars
  10. }
  11. /**
  12. * Returns the dial out url.
  13. *
  14. * @param {Object} state - The state of the app.
  15. * @returns {string}
  16. */
  17. export function getDialOutStatusUrl(state: Object): string {
  18. return state['features/base/config'].guestDialOutStatusUrl;
  19. }
  20. /**
  21. * Returns the dial out status url.
  22. *
  23. * @param {Object} state - The state of the app.
  24. * @returns {string}
  25. */
  26. export function getDialOutUrl(state: Object): string {
  27. return state['features/base/config'].guestDialOutUrl;
  28. }