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

12345678910111213141516171819202122232425262728293031323334353637
  1. // @flow
  2. /**
  3. * Flag indicating if calendar integration should be enabled.
  4. * Default: enabled (true) on Android, auto-detected on iOS.
  5. */
  6. export const CALENDAR_ENABLED = 'calendar.enabled';
  7. /**
  8. * Flag indicating if chat should be enabled.
  9. * Default: enabled (true).
  10. */
  11. export const CHAT_ENABLED = 'chat.enabled';
  12. /**
  13. * Flag indicating if invite functionality should be enabled.
  14. * Default: enabled (true).
  15. */
  16. export const INVITE_ENABLED = 'invite.enabled';
  17. /**
  18. * Flag indicating if recording should be enabled in iOS.
  19. * Default: disabled (false).
  20. */
  21. export const IOS_RECORDING_ENABLED = 'ios.recording.enabled';
  22. /**
  23. * Flag indicating if Picture-in-Picture should be enabled.
  24. * Default: auto-detected.
  25. */
  26. export const PIP_ENABLED = 'pip.enabled';
  27. /**
  28. * Flag indicating if the welcome page should be enabled.
  29. * Default: disabled (false).
  30. */
  31. export const WELCOME_PAGE_ENABLED = 'welcomepage.enabled';