Skip to content

Commit faceab3

Browse files
authored
cleaned up broken links
1 parent 459a145 commit faceab3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

articles/communication-services/tutorials/migrating-to-azure-communication-services-calling.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ call.on('stateChanged', async () =\> { console.log(\`Call state changed: \${cal
200200

201201
#### 1:1 Call
202202

203-
To call another Azure Communication Services user, use the `startCall` method on `callAgent` and pass the recipient's `CommunicationUserIdentifier` that you [created with the Communication Services administration library](../../quickstarts/identity/access-tokens.md).
203+
To call another Azure Communication Services user, use the `startCall` method on `callAgent` and pass the recipient's `CommunicationUserIdentifier` that you [created with the Communication Services administration library](../quickstarts/identity/access-tokens.md).
204204
```javascript
205205
const userCallee = { communicationUserId: '\<Azure_Communication_Services_USER_ID\>' };
206206
const oneToOneCall = callAgent.startCall([userCallee]);
@@ -213,7 +213,7 @@ To join a `Room` call, you can instantiate a context object with the `roomId` pr
213213
const context = { roomId: '\<RoomId\>' };
214214
const call = callAgent.join(context);
215215
```
216-
A **Room** offers application developers better control over who can join a call, when they meet and how they collaborate. To learn more about **Rooms**, see the [Rooms overview](../../concepts/rooms/room-concept.md), or see [Quickstart: Join a room call](../../quickstarts/rooms/join-rooms-call.md).
216+
A **Room** offers application developers better control over who can join a call, when they meet and how they collaborate. To learn more about **Rooms**, see the [Rooms overview](../concepts/rooms/room-concept.md), or see [Quickstart: Join a room call](../quickstarts/rooms/join-rooms-call.md).
217217
218218
#### Group Call
219219
@@ -295,7 +295,7 @@ callAgent.on('callsUpdated', (event) => {
295295
});
296296
```
297297
298-
For Azure Communication Services Teams implementation, see how to [Receive a Teams Incoming Call](../../how-tos/cte-calling-sdk/manage-calls.md#receive-a-teams-incoming-call).
298+
For Azure Communication Services Teams implementation, see how to [Receive a Teams Incoming Call](../how-tos/cte-calling-sdk/manage-calls.md#receive-a-teams-incoming-call).
299299
300300
## Adding and removing participants to a call
301301

0 commit comments

Comments
 (0)