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 1.2KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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 call integration (CallKit on iOS, ConnectionService on Android)
  9. * should be enabled.
  10. * Default: enabled (true).
  11. */
  12. export const CALL_INTEGRATION_ENABLED = 'call-integration.enabled';
  13. /**
  14. * Flag indicating if chat should be enabled.
  15. * Default: enabled (true).
  16. */
  17. export const CLOSE_CAPTIONS_ENABLED = 'close-captions.enabled';
  18. /**
  19. * Flag indicating if chat should be enabled.
  20. * Default: enabled (true).
  21. */
  22. export const CHAT_ENABLED = 'chat.enabled';
  23. /**
  24. * Flag indicating if invite functionality should be enabled.
  25. * Default: enabled (true).
  26. */
  27. export const INVITE_ENABLED = 'invite.enabled';
  28. /**
  29. * Flag indicating if recording should be enabled in iOS.
  30. * Default: disabled (false).
  31. */
  32. export const IOS_RECORDING_ENABLED = 'ios.recording.enabled';
  33. /**
  34. * Flag indicating if Picture-in-Picture should be enabled.
  35. * Default: auto-detected.
  36. */
  37. export const PIP_ENABLED = 'pip.enabled';
  38. /**
  39. * Flag indicating if the welcome page should be enabled.
  40. * Default: disabled (false).
  41. */
  42. export const WELCOME_PAGE_ENABLED = 'welcomepage.enabled';