Skip to content

Commit aff435f

Browse files
Merge pull request #210946 from radubulboaca/master
address review feedback
2 parents b4fd1f5 + 783e250 commit aff435f

File tree

3 files changed

+12
-6
lines changed

3 files changed

+12
-6
lines changed

articles/communication-services/quickstarts/rooms/includes/rooms-quickstart-call-android.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ call.addOnStateChangedListener { args: PropertyChangedEvent? ->
5555
}
5656
```
5757

58-
To display the role of the local call participant or remote call participants, subscribe to the handler below. Learn more about roles and permissions for room call participants [here](../../../concepts/rooms/room-concept.md#predefined-participant-roles-and-permissions).
58+
To display the role of the local or remote call participants, subscribe to the handler below.
5959

6060
```java
6161
// Get your role in the call
@@ -77,4 +77,6 @@ remoteParticipant.addOnRoleChangedListener(isRoleChanged);
7777

7878
// Get role of the remote participant
7979
remoteParticipant.getRole();
80-
```
80+
```
81+
82+
You can learn more about roles of room call participants in the [rooms concept documentation](../../../concepts/rooms/room-concept.md#predefined-participant-roles-and-permissions).

articles/communication-services/quickstarts/rooms/includes/rooms-quickstart-call-ios.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ func setCallAndObserver(call:Call!, error:Error?) {
100100
}
101101
```
102102

103-
To display the role of the local call participant or remote call participants, subscribe to the handler below. Learn more about roles and permissions for room call participants [here](../../../concepts/rooms/room-concept.md#predefined-participant-roles-and-permissions).
103+
To display the role of the local or remote call participants, subscribe to the handler below.
104104

105105
```swift
106106
// Subscribe to changes for your role in a call
@@ -112,4 +112,6 @@ public func call(_ call: Call, didChangeRole args: PropertyChangedEventArgs) {
112112
func remoteParticipant(_ remoteParticipant: RemoteParticipant, didChangeRole args: PropertyChangedEventArgs) {
113113
// handle remote participant role change
114114
}
115-
```
115+
```
116+
117+
You can learn more about roles of room call participants in the [rooms concept documentation](../../../concepts/rooms/room-concept.md#predefined-participant-roles-and-permissions).

articles/communication-services/quickstarts/rooms/includes/rooms-quickstart-call-web.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ const call = callAgent.join(context);
2626

2727
```
2828

29-
To display the role of the local call participant or remote call participants, subscribe to the handler below. Learn more about roles and permissions for room call participants [here](../../../concepts/rooms/room-concept.md#predefined-participant-roles-and-permissions).
29+
To display the role of the local or remote call participants, subscribe to the handler below.
3030

3131
```js
3232
// Subscribe to changes for your role in a call
@@ -42,4 +42,6 @@ To display the role of the local call participant or remote call participants, s
4242
console.log(remoteParticipant.role);
4343
});
4444
}
45-
```
45+
```
46+
47+
You can learn more about roles of room call participants in the [rooms concept documentation](../../../concepts/rooms/room-concept.md#predefined-participant-roles-and-permissions).

0 commit comments

Comments
 (0)