feat(API): Add show feedback parameter to hangup

This commit is contained in:
Hristo Terezov 2019-05-30 14:28:32 +01:00
parent d01cfc8466
commit 5fb9422513
1 changed files with 2 additions and 2 deletions

View File

@ -103,9 +103,9 @@ function initCommands() {
APP.store.dispatch(toggleTileView());
},
'video-hangup': () => {
'video-hangup': (showFeedbackDialog = true) => {
sendAnalytics(createApiEvent('video.hangup'));
APP.conference.hangup(true);
APP.conference.hangup(showFeedbackDialog);
},
'email': email => {
sendAnalytics(createApiEvent('email.changed'));