mirror of
https://github.com/nextcloud/spreed.git
synced 2025-12-18 05:20:50 +01:00
feat(reactions): Add π and π₯ call reactions
Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
parent
521c6414ad
commit
22693b9c3f
5 changed files with 5 additions and 3 deletions
BIN
img/emojis/Fire.gif
Normal file
BIN
img/emojis/Fire.gif
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 37 KiB |
BIN
img/emojis/Wave.gif
Normal file
BIN
img/emojis/Wave.gif
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 25 KiB |
|
|
@ -188,7 +188,7 @@ class Capabilities implements IPublicCapability {
|
|||
'breakout-rooms' => $this->talkConfig->isBreakoutRoomsEnabled(),
|
||||
'recording' => $this->talkConfig->isRecordingEnabled(),
|
||||
'recording-consent' => $this->talkConfig->recordingConsentRequired(),
|
||||
'supported-reactions' => ['β€οΈ', 'π', 'π', 'π', 'π', 'π', 'π€©', 'π€', 'π²', 'π₯'],
|
||||
'supported-reactions' => ['β€οΈ', 'π', 'π', 'π', 'π', 'π', 'π₯', 'π', 'π€©', 'π€', 'π²', 'π₯'],
|
||||
// 'predefined-backgrounds' => list<string>,
|
||||
'can-upload-background' => false,
|
||||
'sip-enabled' => $this->talkConfig->isSIPConfigured(),
|
||||
|
|
|
|||
|
|
@ -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',
|
||||
|
|
|
|||
|
|
@ -114,7 +114,7 @@ class CapabilitiesTest extends TestCase {
|
|||
'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 @@ class CapabilitiesTest extends TestCase {
|
|||
'breakout-rooms' => true,
|
||||
'recording' => false,
|
||||
'recording-consent' => 0,
|
||||
'supported-reactions' => ['β€οΈ', 'π', 'π', 'π', 'π', 'π', 'π€©', 'π€', 'π²', 'π₯'],
|
||||
'supported-reactions' => ['β€οΈ', 'π', 'π', 'π', 'π', 'π', 'π₯', 'π', 'π€©', 'π€', 'π²', 'π₯'],
|
||||
'can-upload-background' => $canUpload,
|
||||
'sip-enabled' => false,
|
||||
'sip-dialout-enabled' => false,
|
||||
|
|
|
|||
Loadingβ¦
Add table
Reference in a new issue