2019-05-24 11:06:05 +00:00
|
|
|
// @flow
|
|
|
|
|
2019-05-28 13:30:57 +00:00
|
|
|
/**
|
2019-05-28 13:32:29 +00:00
|
|
|
* Flag indicating if calendar integration should be enabled.
|
|
|
|
* Default: enabled (true) on Android, auto-detected on iOS.
|
2019-05-28 13:30:57 +00:00
|
|
|
*/
|
2019-05-28 13:32:29 +00:00
|
|
|
export const CALENDAR_ENABLED = 'calendar.enabled';
|
2019-05-28 13:30:57 +00:00
|
|
|
|
2019-10-18 14:30:59 +00:00
|
|
|
/**
|
|
|
|
* Flag indicating if call integration (CallKit on iOS, ConnectionService on Android)
|
|
|
|
* should be enabled.
|
|
|
|
* Default: enabled (true).
|
|
|
|
*/
|
|
|
|
export const CALL_INTEGRATION_ENABLED = 'call-integration.enabled';
|
|
|
|
|
2019-05-28 13:30:57 +00:00
|
|
|
/**
|
|
|
|
* Flag indicating if chat should be enabled.
|
|
|
|
* Default: enabled (true).
|
|
|
|
*/
|
|
|
|
export const CHAT_ENABLED = 'chat.enabled';
|
|
|
|
|
2019-10-24 15:41:31 +00:00
|
|
|
/**
|
|
|
|
* Flag indicating if invite functionality should be enabled.
|
|
|
|
* Default: enabled (true).
|
|
|
|
*/
|
|
|
|
export const INVITE_ENABLED = 'invite.enabled';
|
|
|
|
|
2019-05-24 15:11:54 +00:00
|
|
|
/**
|
|
|
|
* Flag indicating if recording should be enabled in iOS.
|
|
|
|
* Default: disabled (false).
|
|
|
|
*/
|
|
|
|
export const IOS_RECORDING_ENABLED = 'ios.recording.enabled';
|
|
|
|
|
2019-05-24 11:06:05 +00:00
|
|
|
/**
|
|
|
|
* Flag indicating if Picture-in-Picture should be enabled.
|
|
|
|
* Default: auto-detected.
|
|
|
|
*/
|
|
|
|
export const PIP_ENABLED = 'pip.enabled';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Flag indicating if the welcome page should be enabled.
|
|
|
|
* Default: disabled (false).
|
|
|
|
*/
|
|
|
|
export const WELCOME_PAGE_ENABLED = 'welcomepage.enabled';
|