Skip to content

Commit 7e1f5cf

Browse files
Update breakoutrooms-web.md
fixed the scorecard issues
1 parent 5003544 commit 7e1f5cf

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ const breakoutRoomsFeature = mainMeetingCall.feature(Features.BreakoutRooms);
2020
```
2121
### Subscribe to breakoutRoom events
2222

23-
The `BreakoutRooms` API allows you to subscribe to `BreakoutRooms` events. A `breakoutRoomsUpdated` event comes from a `BreakoutRoomsCallFeature` instance and contains information about the created, updated and assigned breakout rooms.
23+
The `BreakoutRooms` API allows you to subscribe to `BreakoutRooms` events. A `breakoutRoomsUpdated` event comes from a `BreakoutRoomsCallFeature` instance and contains information about the created, updated, and assigned breakout rooms.
2424

2525
To receive breakout room details, subscribe to the `breakoutRoomsUpdated` event.
2626
```js
@@ -164,7 +164,7 @@ callAgent.on('callsUpdated', e =>{
164164
});
165165
```
166166
167-
When the user is in a breakout room and the organizer assigns a new breakout room to the user, the user will get `breakoutRoomsUpdated` event with the type `assignedBreakoutRooms`. This event will contain the latest breakout room details. The user has to `hangUp()` previous breakout room call. If `autoMoveParticipantToBreakoutRoom` is set to `true`, the user will be automatically moved, other wise the user has to call the `join` method explicitly on the new breakout room as shown above.
167+
When the user is in a breakout room and the organizer assigns a new breakout room to the user, the user gets `breakoutRoomsUpdated` event with the type `assignedBreakoutRooms`. This event contains the latest breakout room details. The user has to `hangUp()` previous breakout room call. If `autoMoveParticipantToBreakoutRoom` is set to `true`, the user is automatically moved, other wise the user has to call the `join` method explicitly on the new breakout room.
168168
169169
```js
170170
//Breakout room which is assigned initially.
@@ -192,7 +192,7 @@ if(assignedRoom.state == 'open' && !assignedRoom.autoMoveParticipantToBreakoutRo
192192
}
193193
```
194194
195-
Microsoft 365 user with role organizer, co-organizer, or breakout room manager will get the list of breakout rooms created by the breakout room manager or organizer of the main meeting. In this case, the behavior is slightly different. This user has to explicitly call `join()` method to join the breakout room. The user will be kept on hold in the mainmeeting. When the leaves the breakoutroom, then the user's main meeting call will be automatically resumed.
195+
Microsoft 365 user with role organizer, co-organizer, or breakout room manager get the list of breakout rooms created by the breakout room manager or organizer of the main meeting. In this case, the behavior is slightly different. This user has to explicitly call `join()` method to join the breakout room. The user is kept on hold in the main meeting. When the leaves the breakout room, then the user's main meeting call is automatically resumed.
196196
197197
If the user wants to join any of the breakout rooms , then the user explicitly calls the `join` method.
198198
@@ -202,7 +202,7 @@ if(breakoutRoom.state == 'open') {
202202
const breakoutRoomCall = await breakoutRoom.join();
203203
}
204204
```
205-
To exit a breakout room, users should execute the `hangUp()` function on the breakout room call. The user will be automatically resumed in the main meeting.
205+
To exit a breakout room, users should execute the `hangUp()` function on the breakout room call. The user is automatically resumed in the main meeting.
206206
207207
```js
208208
breakoutRoomCall.hangUp();
@@ -262,7 +262,7 @@ const state : BreakoutRoomState = breakoutRoom.state;
262262
```js
263263
const autoMoveParticipantToBreakoutRoom : boolean = breakoutRoom.autoMoveParticipantToBreakoutRoom;
264264
```
265-
- `autoMoveParticipantToBreakoutRoom` : Boolean value, which indicates whether the users are moved to breakout rooms automatically when the `state` of `assignedBreakoutRoom` is set to `open`. This property is read-only. In the Teams UI settings for breakout rooms, the organizer, co-organizer, or breakout room manager can adjust this specific setting. By setting this option to `true`, participants will be automatically transferred to their designated breakout room. Conversely, if it's set to `false`, the `join` method must be manually invoked to move participants into the breakout room.
265+
- `autoMoveParticipantToBreakoutRoom` : Boolean value, which indicates whether the users are moved to breakout rooms automatically when the `state` of `assignedBreakoutRoom` is set to `open`. This property is read-only. In the Teams UI settings for breakout rooms, the organizer, co-organizer, or breakout room manager can adjust this specific setting. By setting this option to `true`, participants are automatically transferred to their designated breakout room. Conversely, if it's set to `false`, the `join` method must be manually invoked to move participants into the breakout room.
266266
267267
```js
268268
const call : Call | TeamsCall = breakoutRoom.call;

0 commit comments

Comments
 (0)