feat(API): Add show feedback parameter to hangup

This commit is contained in:
Hristo Terezov
2019-06-01 02:28:04 -07:00
parent d01cfc8466
commit 5fb9422513
+2 -2
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'));