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.ts 1.1KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. /**
  2. * The prefix of the {@code localStorage} key into which {@link storeConfig}
  3. * stores and from which {@link restoreConfig} restores.
  4. *
  5. * @protected
  6. * @type string
  7. */
  8. export const _CONFIG_STORE_PREFIX = 'config.js';
  9. /**
  10. * The toolbar buttons to show on premeeting screens.
  11. */
  12. export const PREMEETING_BUTTONS = [ 'microphone', 'camera', 'select-background', 'invite', 'settings' ];
  13. /**
  14. * The toolbar buttons to show on 3rdParty prejoin screen.
  15. */
  16. export const THIRD_PARTY_PREJOIN_BUTTONS = [ 'microphone', 'camera', 'select-background' ];
  17. /**
  18. * The set of feature flags.
  19. *
  20. * @enum {string}
  21. */
  22. export const FEATURE_FLAGS = {
  23. SSRC_REWRITING: 'ssrcRewritingEnabled'
  24. };
  25. /**
  26. * The URL at which the terms (of service/use) are available to the user.
  27. */
  28. export const DEFAULT_TERMS_URL = 'https://jitsi.org/meet/terms';
  29. /**
  30. * The URL at which the privacy policy is available to the user.
  31. */
  32. export const DEFAULT_PRIVACY_URL = 'https://jitsi.org/meet/privacy';
  33. /**
  34. * The URL at which the help centre is available to the user.
  35. */
  36. export const DEFAULT_HELP_CENTRE_URL = 'https://web-cdn.jitsi.net/faq/meet-faq.html';