您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

constants.js 2.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. // @flow
  2. /**
  3. * Flag indicating if add-people functionality should be enabled.
  4. * Default: enabled (true).
  5. */
  6. export const ADD_PEOPLE_ENABLED = 'add-people.enabled';
  7. /**
  8. * Flag indicating if calendar integration should be enabled.
  9. * Default: enabled (true) on Android, auto-detected on iOS.
  10. */
  11. export const CALENDAR_ENABLED = 'calendar.enabled';
  12. /**
  13. * Flag indicating if call integration (CallKit on iOS, ConnectionService on Android)
  14. * should be enabled.
  15. * Default: enabled (true).
  16. */
  17. export const CALL_INTEGRATION_ENABLED = 'call-integration.enabled';
  18. /**
  19. * Flag indicating if close captions should be enabled.
  20. * Default: enabled (true).
  21. */
  22. export const CLOSE_CAPTIONS_ENABLED = 'close-captions.enabled';
  23. /**
  24. * Flag indicating if chat should be enabled.
  25. * Default: enabled (true).
  26. */
  27. export const CHAT_ENABLED = 'chat.enabled';
  28. /**
  29. * Flag indicating if invite functionality should be enabled.
  30. * Default: enabled (true).
  31. */
  32. export const INVITE_ENABLED = 'invite.enabled';
  33. /**
  34. * Flag indicating if recording should be enabled in iOS.
  35. * Default: disabled (false).
  36. */
  37. export const IOS_RECORDING_ENABLED = 'ios.recording.enabled';
  38. /**
  39. * Flag indicating if live-streaming should be enabled.
  40. * Default: auto-detected.
  41. */
  42. export const LIVE_STREAMING_ENABLED = 'live-streaming.enabled';
  43. /**
  44. * Flag indicating if displaying the meeting name should be enabled.
  45. * Default: enabled (true).
  46. */
  47. export const MEETING_NAME_ENABLED = 'meeting-name.enabled';
  48. /**
  49. * Flag indicating if the meeting password button should be enabled.
  50. * Note that this flag just decides on the buttton, if a meeting has a password
  51. * set, the password ddialog will still show up.
  52. * Default: enabled (true).
  53. */
  54. export const MEETING_PASSWORD_ENABLED = 'meeting-password.enabled';
  55. /**
  56. * Flag indicating if Picture-in-Picture should be enabled.
  57. * Default: auto-detected.
  58. */
  59. export const PIP_ENABLED = 'pip.enabled';
  60. /**
  61. * Flag indicating if raise hand feature should be enabled.
  62. * Default: enabled.
  63. */
  64. export const RAISE_HAND_ENABLED = 'raise-hand.enabled';
  65. /**
  66. * Flag indicating if recording should be enabled.
  67. * Default: auto-detected.
  68. */
  69. export const RECORDING_ENABLED = 'recording.enabled';
  70. /**
  71. * Flag indicating if tile view feature should be enabled.
  72. * Default: enabled.
  73. */
  74. export const TILE_VIEW_ENABLED = 'tile-view.enabled';
  75. /**
  76. * Flag indicating if the toolbox should be always be visible
  77. * Default: disabled (false).
  78. */
  79. export const TOOLBOX_ALWAYS_VISIBLE = 'toolbox.alwaysVisible';
  80. /**
  81. * Flag indicating if the welcome page should be enabled.
  82. * Default: disabled (false).
  83. */
  84. export const WELCOME_PAGE_ENABLED = 'welcomepage.enabled';