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.

12345678910111213141516171819202122232425262728293031
  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 recording should be enabled in iOS.
  14. * Default: disabled (false).
  15. */
  16. export const IOS_RECORDING_ENABLED = 'ios.recording.enabled';
  17. /**
  18. * Flag indicating if Picture-in-Picture should be enabled.
  19. * Default: auto-detected.
  20. */
  21. export const PIP_ENABLED = 'pip.enabled';
  22. /**
  23. * Flag indicating if the welcome page should be enabled.
  24. * Default: disabled (false).
  25. */
  26. export const WELCOME_PAGE_ENABLED = 'welcomepage.enabled';