Skip to content

Commit fe56ff6

Browse files
authored
Apply suggestions from PR review
Fix typos, grammar, and punctuation
1 parent f2e2c62 commit fe56ff6

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

articles/communication-services/how-tos/calling-sdk/breakoutrooms.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ This article describes how to implement Microsoft Teams breakout rooms with Azur
1919

2020
## Prerequisites
2121

22-
- An Azure account with an active subscription, see [Create an account for free](https://azure.microsoft.com/free/?WT.mc_id=A261C142F).
23-
- A deployed Communication Services resource, see [Create a Communication Services resource](../../quickstarts/create-communication-resource.md).
22+
- An Azure account with an active subscription. See [Create an account for free](https://azure.microsoft.com/free/?WT.mc_id=A261C142F).
23+
- A deployed Communication Services resource. See [Create a Communication Services resource](../../quickstarts/create-communication-resource.md).
2424
- A user access token to enable the calling client. For more information, see [Create and manage access tokens](../../quickstarts/identity/access-tokens.md).
25-
- Teams meeting organizer needs to assign Teams meeting policy that enables breakout rooms, see[Teams meeting policy](/powershell/module/teams/set-csteamsmeetingpolicy?view=teams-ps&preserve-view=true).
25+
- Teams meeting organizer needs to assign Teams meeting policy that enables breakout rooms. See [Teams meeting policy](/powershell/module/teams/set-csteamsmeetingpolicy?view=teams-ps&preserve-view=true).
2626
- Optional: Complete the quickstart to [add voice calling to your application](../../quickstarts/voice-video-calling/getting-started-with-calling.md).
2727

2828
Only Microsoft 365 Users with Organizer, Co-Organizer, or Breakout Room manager roles can manage the breakout rooms.

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@ breakoutRoomsFeature.on('breakoutRoomsUpdated', breakoutRoomsUpdatedListener);
3535

3636
### Handle breakoutRoom events
3737

38-
Event `breakoutRoomsUpdated` provides instance of one of the following classes as an input parameter. You can use property `type` to distinguish between individual event types.
38+
Event `breakoutRoomsUpdated` provides an instance of one of the following classes as an input parameter. You can use property `type` to distinguish between individual event types.
3939

40-
1. Class `BreakoutRoomsEvent`: This event is triggered when a user with the role organizer, co-organizer, or breakout room manager creates or updates the breakout rooms. Microsoft 365 users with role organizer, co-organizer, or breakout room manager can receive this type of event. Developers can use the breakout rooms in property `data` to render details about all breakout rooms. This class has property `type` equal to `"breakoutRooms"`.
40+
- Class `BreakoutRoomsEvent`: This event is triggered when a user with the role organizer, co-organizer, or breakout room manager creates or updates the breakout rooms. Microsoft 365 users with role organizer, co-organizer, or breakout room manager can receive this type of event. Developers can use the breakout rooms in property `data` to render details about all breakout rooms. This class has property `type` equal to `"breakoutRooms"`.
4141

4242
```js
4343
export interface BreakoutRoomsEvent {
@@ -52,7 +52,7 @@ Event `breakoutRoomsUpdated` provides instance of one of the following classes a
5252
}
5353
```
5454

55-
2. Class `BreakoutRoomsSettingsEvent`: When a user with a role organizer, co-organizer, or breakout room manager updates the breakout room's settings, it triggers this event. Developers can use this information to render the time when breakout room ends or decide whether to render a button to join main room. This class has property `type` equal to `"breakoutRoomSettings"`.
55+
- Class `BreakoutRoomsSettingsEvent`: When a user with a role organizer, co-organizer, or breakout room manager updates the breakout room's settings, it triggers this event. Developers can use this information to render the time when breakout room ends or decide whether to render a button to join main room. This class has property `type` equal to `"breakoutRoomSettings"`.
5656

5757
```js
5858
export interface BreakoutRoomSettingsEvent {
@@ -67,7 +67,7 @@ Event `breakoutRoomsUpdated` provides instance of one of the following classes a
6767
}
6868
```
6969

70-
3. Class `AssignedBreakoutRoomsEvent`: This event is triggered when user is assigned to a breakout room, or assigned breakout room is updated. Users can join the breakout room when property `state` is set to `open`, leave the breakout room when property `state` is set to `closed`, or render details of the breakout room. This class has property `type` equal to `"assignedBreakoutRoom"`.
70+
- Class `AssignedBreakoutRoomsEvent`: This event is triggered when user is assigned to a breakout room, or assigned breakout room is updated. Users can join the breakout room when property `state` is set to `open`, leave the breakout room when property `state` is set to `closed`, or render details of the breakout room. This class has property `type` equal to `"assignedBreakoutRoom"`.
7171

7272
```js
7373
export interface AssignedBreakoutRoomEvent {
@@ -82,7 +82,7 @@ Event `breakoutRoomsUpdated` provides instance of one of the following classes a
8282
}
8383
```
8484

85-
4. Class `JoinBreakoutRoomsEvent` : This event is triggered when the participant is joining a breakout room call. This event can happen when a user is automatically moved to breakout room (that is, if `assignedBreakoutRoom` has property `state` set to `open` and `autoMoveParticipantToBreakoutRoom` is set to `true`) or when a user explicitly joins a breakout room (that is, calls method `join` on the instance `assignedBreakoutRoom` when `autoMoveParticipantToBreakoutRoom` is set to `false`). Property `data` contains the breakout room `call` instance, that developers can use to control breakout room call. This class has property `type` equal to `"join"`.
85+
- Class `JoinBreakoutRoomsEvent`: This event is triggered when the participant is joining a breakout room call. This event can happen when a user is automatically moved to breakout room (that is, if `assignedBreakoutRoom` has property `state` set to `open` and `autoMoveParticipantToBreakoutRoom` is set to `true`) or when a user explicitly joins a breakout room (that is, calls method `join` on the instance `assignedBreakoutRoom` when `autoMoveParticipantToBreakoutRoom` is set to `false`). Property `data` contains the breakout room `call` instance, that developers can use to control breakout room call. This class has property `type` equal to `"join"`.
8686

8787
```js
8888
export interface JoinBreakoutRoomEvent {
@@ -201,7 +201,7 @@ breakoutRoomsFeature.off('breakoutRoomsUpdated', breakoutRoomsUpdatedListener);
201201

202202
Breakout rooms have the following properties:
203203

204-
> [!Note:]
204+
> [!Note]
205205
> The following sample code efficiently displays all breakout room properties. It is not intended to be reused as shown. In practice you only use the properties needed for your breakout room scenario.
206206
207207
```js

0 commit comments

Comments
 (0)