feat(call-flows): Add config property for enabling call flows. (#3031)

This commit is contained in:
hristoterezov 2018-05-23 16:52:44 -05:00 committed by virtuacoplenny
parent 592305df74
commit 3dbb663922
2 changed files with 8 additions and 2 deletions

View File

@ -24,6 +24,7 @@ const WHITELISTED_KEYS = [
'autoRecord',
'autoRecordToken',
'avgRtpStatsN',
'callFlowsEnabled',
'callStatsConfIDNamespace',
'callStatsID',
'callStatsSecret',

View File

@ -49,7 +49,11 @@ export function invite(invitees: Array<Object>) {
const state = getState();
const { conference } = state['features/base/conference'];
const { inviteServiceUrl } = state['features/base/config'];
const {
callFlowsEnabled,
inviteServiceUrl,
inviteServiceCallFlowsUrl
} = state['features/base/config'];
const inviteUrl = getInviteURL(state);
const { jwt } = state['features/base/jwt'];
@ -85,7 +89,8 @@ export function invite(invitees: Array<Object>) {
// filter all rooms and users from {@link invitesLeftToSend}.
const peopleInvitePromise
= invitePeopleAndChatRooms(
inviteServiceUrl,
callFlowsEnabled
? inviteServiceCallFlowsUrl : inviteServiceUrl,
inviteUrl,
jwt,
usersAndRooms)