Use explicit anchor links for INDIVIDUAL and COMPOSED recording

Use explicitly set anchor links whenever they are used elsewhere.
Otherwise, changes in header text would break all references.
This commit is contained in:
Juan Navarro 2022-02-18 13:28:48 +01:00
parent a6df44699c
commit c972751e42
4 changed files with 7 additions and 7 deletions

View File

@ -63,7 +63,7 @@ export class Connection {
role: string;
/**
* Whether the streams published by this connection will be recorded or not. This only affects [INDIVIDUAL recording](/en/stable/advanced-features/recording#selecting-streams-to-be-recorded) <a href="https://docs.openvidu.io/en/stable/openvidu-pro/" target="_blank" style="display: inline-block; background-color: rgb(0, 136, 170); color: white; font-weight: bold; padding: 0px 5px; margin-right: 5px; border-radius: 3px; font-size: 13px; line-height:21px; font-family: Montserrat, sans-serif">PRO</a>
* Whether the streams published by this Connection will be recorded or not. This only affects [INDIVIDUAL recording](/en/stable/advanced-features/recording/#individual-recording-selection) <a href="https://docs.openvidu.io/en/stable/openvidu-pro/" target="_blank" style="display: inline-block; background-color: rgb(0, 136, 170); color: white; font-weight: bold; padding: 0px 5px; margin-right: 5px; border-radius: 3px; font-size: 13px; line-height:21px; font-family: Montserrat, sans-serif">PRO</a>
*
* **Only defined for the local connection. In remote connections will be `undefined`**
*/
@ -203,4 +203,4 @@ export class Connection {
this.disposed = true;
}
}
}

View File

@ -113,7 +113,7 @@ public class Connection {
/**
* Whether the streams published by this Connection will be recorded or not.
* This only affects <a href=
* "https://docs.openvidu.io/en/stable/advanced-features/recording#selecting-streams-to-be-recorded"
* "https://docs.openvidu.io/en/stable/advanced-features/recording/#individual-recording-selection"
* target="_blank">INDIVIDUAL recording</a>.
*/
public boolean record() {

View File

@ -126,7 +126,7 @@ public class ConnectionProperties {
/**
* Call this method to flag the streams published by this Connection to be
* recorded or not. This only affects <a href=
* "https://docs.openvidu.io/en/stable/advanced-features/recording#selecting-streams-to-be-recorded"
* "https://docs.openvidu.io/en/stable/advanced-features/recording/#individual-recording-selection"
* target="_blank">INDIVIDUAL recording</a>. If not set by default will be true.
*/
public Builder record(boolean record) {
@ -298,7 +298,7 @@ public class ConnectionProperties {
* 3px; font-size: 13px; line-height:21px; font-family: Montserrat,
* sans-serif">PRO</a> Whether the streams published by this Connection will be
* recorded or not. This only affects <a href=
* "https://docs.openvidu.io/en/stable/advanced-features/recording#selecting-streams-to-be-recorded"
* "https://docs.openvidu.io/en/stable/advanced-features/recording/#individual-recording-selection"
* target="_blank">INDIVIDUAL recording</a>.
*/
public Boolean record() {

View File

@ -42,7 +42,7 @@ export interface ConnectionProperties {
/**
* **This feature is part of OpenVidu Pro tier** <a href="https://docs.openvidu.io/en/stable/openvidu-pro/" target="_blank" style="display: inline-block; background-color: rgb(0, 136, 170); color: white; font-weight: bold; padding: 0px 5px; margin-right: 5px; border-radius: 3px; font-size: 13px; line-height:21px; font-family: Montserrat, sans-serif">PRO</a>
*
* Whether to record the streams published by this Connection or not. This only affects [INDIVIDUAL recording](/en/stable/advanced-features/recording#selecting-streams-to-be-recorded)
* Whether to record the streams published by this Connection or not. This only affects [INDIVIDUAL recording](/en/stable/advanced-features/recording/#individual-recording-selection)
*
* @default true
*/
@ -154,4 +154,4 @@ export interface ConnectionProperties {
*
*/
customIceServers?: IceServerProperties[];
}
}