Skip to content

Commit 08234f9

Browse files
Add muteOthers to capabilities-web.md
1 parent 612ab78 commit 08234f9

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

articles/communication-services/how-tos/calling-sdk/includes/capabilities/capabilities-web.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,10 @@ capabilitiesFeature.on('capabilitiesChanged', (capabilitiesChangeInfo) => {
5151
(value.isPresent) ? this.setState({ canRaiseHands: true }) : this.setState({ canRaiseHands: false });
5252
continue;
5353
}
54+
if(key === 'muteOthers' && value.reason != 'FeatureNotSupported') {
55+
(value.isPresent) ? this.setState({ canMuteOthers: true }) : this.setState({ canMuteOthers: false });
56+
continue;
57+
}
5458
if(key === 'reaction' && value.reason != 'FeatureNotSupported') {
5559
(value.isPresent) ? this.setState({ canReact: true }) : this.setState({ canReact: false });
5660
continue;
@@ -74,5 +78,6 @@ capabilitiesFeature.on('capabilitiesChanged', (capabilitiesChangeInfo) => {
7478
- *startLiveCaptions*: Ability to start live captions (beta only)
7579
- *stopLiveCaptions*: Ability to stop live captions (beta only)
7680
- *raiseHand*: Ability to raise hand (beta only)
81+
- *muteOthers*: Ability to soft mute remote participant(s) in the meeting
7782
- *reaction*: Ability to react in the meeting (beta only)
7883
- *viewAttendeeNames*: Ability to view attendee names in the meeting

0 commit comments

Comments
 (0)