diff --git a/img/emojis/Fire.gif b/img/emojis/Fire.gif new file mode 100644 index 00000000000..2428075fcaf Binary files /dev/null and b/img/emojis/Fire.gif differ diff --git a/img/emojis/Wave.gif b/img/emojis/Wave.gif new file mode 100644 index 00000000000..bb0fc5f7fa4 Binary files /dev/null and b/img/emojis/Wave.gif differ diff --git a/lib/Capabilities.php b/lib/Capabilities.php index 8fb7cdc7f44..5df082d7391 100644 --- a/lib/Capabilities.php +++ b/lib/Capabilities.php @@ -188,7 +188,7 @@ public function getCapabilities(): array { 'breakout-rooms' => $this->talkConfig->isBreakoutRoomsEnabled(), 'recording' => $this->talkConfig->isRecordingEnabled(), 'recording-consent' => $this->talkConfig->recordingConsentRequired(), - 'supported-reactions' => ['❤️', '🎉', '👏', '👍', '👎', '😂', '🤩', '🤔', '😲', '😥'], + 'supported-reactions' => ['❤️', '🎉', '👏', '👋', '👍', '👎', '🔥', '😂', '🤩', '🤔', '😲', '😥'], // 'predefined-backgrounds' => list, 'can-upload-background' => false, 'sip-enabled' => $this->talkConfig->isSIPConfigured(), diff --git a/src/components/CallView/shared/ReactionToaster.vue b/src/components/CallView/shared/ReactionToaster.vue index 3b484214cc3..037217e266e 100644 --- a/src/components/CallView/shared/ReactionToaster.vue +++ b/src/components/CallView/shared/ReactionToaster.vue @@ -46,8 +46,10 @@ const reactions = { '❤️': 'Heart.gif', '🎉': 'Party.gif', '👏': 'Clap.gif', + '👋': 'Wave.gif', '👍': 'Thumbs-up.gif', '👎': 'Thumbs-down.gif', + '🔥': 'Fire.gif', '😂': 'Joy.gif', '🤩': 'Star-struck.gif', '🤔': 'Thinking-face.gif', diff --git a/tests/php/CapabilitiesTest.php b/tests/php/CapabilitiesTest.php index 4a17dd966f8..5e7d8aa86e5 100644 --- a/tests/php/CapabilitiesTest.php +++ b/tests/php/CapabilitiesTest.php @@ -114,7 +114,7 @@ public function testGetCapabilitiesGuest(): void { 'breakout-rooms' => false, 'recording' => false, 'recording-consent' => 0, - 'supported-reactions' => ['❤️', '🎉', '👏', '👍', '👎', '😂', '🤩', '🤔', '😲', '😥'], + 'supported-reactions' => ['❤️', '🎉', '👏', '👋', '👍', '👎', '🔥', '😂', '🤩', '🤔', '😲', '😥'], 'can-upload-background' => false, 'sip-enabled' => false, 'sip-dialout-enabled' => false, @@ -247,7 +247,7 @@ public function testGetCapabilitiesUserAllowed(bool $isNotAllowed, bool $canCrea 'breakout-rooms' => true, 'recording' => false, 'recording-consent' => 0, - 'supported-reactions' => ['❤️', '🎉', '👏', '👍', '👎', '😂', '🤩', '🤔', '😲', '😥'], + 'supported-reactions' => ['❤️', '🎉', '👏', '👋', '👍', '👎', '🔥', '😂', '🤩', '🤔', '😲', '😥'], 'can-upload-background' => $canUpload, 'sip-enabled' => false, 'sip-dialout-enabled' => false,