Skip to content

Commit ebed768

Browse files
committed
renamed coorganizer to co-organizer
1 parent daba020 commit ebed768

File tree

1 file changed

+4
-4
lines changed
  • articles/communication-services/how-tos/calling-sdk/includes/spotlight

1 file changed

+4
-4
lines changed

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ spotLightFeature.startSpotlight();
2626
```
2727

2828
### Spotlight specific participants
29-
Any participant in the call or meeting can be pinned. Only Microsoft 365 users who have an organizer, coorganizer, or presenter role can start spotlight for other participants. This action is idempotent, trying to start spotlight on a pinned participant does nothing
29+
Any participant in the call or meeting can be pinned. Only Microsoft 365 users who have an organizer, co-organizer, or presenter role can start spotlight for other participants. This action is idempotent, trying to start spotlight on a pinned participant does nothing
3030
```js
3131
// Specify list of participants to be spotlighted
3232
CommunicationUserIdentifier acsUser = new CommunicationUserIdentifier(<USER_ID>);
@@ -43,7 +43,7 @@ spotLightFeature.stopSpotlight();
4343

4444

4545
### Remove spotlight from participants
46-
Any pinned participant in the call or meeting can be unpinned. Only Microsoft 365 users who have an organizer, coorganizer, or presenter role can unpin other participants. This action is idempotent, trying to stop spotlight on an unpinned participant does nothing
46+
Any pinned participant in the call or meeting can be unpinned. Only Microsoft 365 users who have an organizer, co-organizer, or presenter role can unpin other participants. This action is idempotent, trying to stop spotlight on an unpinned participant does nothing
4747
```js
4848
// Specify list of participants to be spotlighted
4949
CommunicationUserIdentifier acsUser = new CommunicationUserIdentifier(<USER_ID>);
@@ -52,7 +52,7 @@ spotLightFeature.stopSpotlight([acsUser, teamsUser]);
5252
```
5353

5454
### Remove all spotlights
55-
All pinned participants can be unpinned using this API. Only Microsoft 365 users who have an organizer, coorganizer, or presenter role can unpin all participants.
55+
All pinned participants can be unpinned using this API. Only Microsoft 365 users who have an organizer, co-organizer, or presenter role can unpin all participants.
5656
```js
5757
spotLightFeature.stopAllSpotLight();
5858
```
@@ -95,4 +95,4 @@ spotLightFeature.maxParticipantsToSpotlight;
9595
|----------------------------------------------|--------|--------|---------|----------|
9696
|400 | 45900 | ExpectedError | All provided participant IDs are already spotlighted | Only participants who aren't currently spotlighted can be spotlighted |
9797
|400 | 45902 | ExpectedError | The maximum number of participants that can be spotlighted has been reached | Only seven participants can be in the spotlight state at any given time |
98-
|403 | 45903 | ExpectedError | Only participants with the roles of organizer, coorganizer, or presenter can initiate a spotlight. | Ensure the participant invoking the `startSpotlight` API holds the role of organizer, coorganizer or presenter |
98+
|403 | 45903 | ExpectedError | Only participants with the roles of organizer, co-organizer, or presenter can initiate a spotlight. | Ensure the participant calling the `startSpotlight` API holds has assigned role of organizer, co-organizer or presenter |

0 commit comments

Comments
 (0)