summaryrefslogtreecommitdiffstats
path: root/src/components/CallView/CallView.vue
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/CallView/CallView.vue')
-rw-r--r--src/components/CallView/CallView.vue9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/components/CallView/CallView.vue b/src/components/CallView/CallView.vue
index bab63925a..01afdf043 100644
--- a/src/components/CallView/CallView.vue
+++ b/src/components/CallView/CallView.vue
@@ -121,7 +121,9 @@
@select-video="handleSelectVideo"
@click-local-video="handleClickLocalVideo" />
- <ReactionToaster :token="token"
+ <ReactionToaster v-if="supportedReactions?.length"
+ :token="token"
+ :supported-reactions="supportedReactions"
:call-participant-models="callParticipantModels" />
<!-- Local video if sidebar -->
@@ -145,6 +147,7 @@
<script>
import debounce from 'debounce'
+import { getCapabilities } from '@nextcloud/capabilities'
import { showMessage } from '@nextcloud/dialogs'
import { subscribe, unsubscribe } from '@nextcloud/event-bus'
import { loadState } from '@nextcloud/initial-state'
@@ -343,6 +346,10 @@ export default {
return null
},
+
+ supportedReactions() {
+ return getCapabilities()?.spreed?.config?.call?.['supported-reactions']
+ },
},
watch: {
localScreen(localScreen) {