From 92ffd5bd2bd8d4379a9715afbce1932e42bf3d5b Mon Sep 17 00:00:00 2001 From: Mihaela Dumitru Date: Wed, 18 Dec 2024 15:34:22 +0200 Subject: [PATCH] Update configuration.md (#550) --- docs/dev-guide/configuration.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/dev-guide/configuration.md b/docs/dev-guide/configuration.md index d1d848698..e6be8a8df 100644 --- a/docs/dev-guide/configuration.md +++ b/docs/dev-guide/configuration.md @@ -1315,12 +1315,14 @@ Properties: * `recordAudioAndVideo` - If true (default) recording audio and video is selected by default in the recording dialog. * `suggestRecording` - If true, shows a notification at the start of the meeting with a call to action button to start recording (for users who can do so). * `showPrejoinWarning` - If true, shows a warning label in the prejoin screen to point out the possibility that the call you're joining might be recorded. +* `showRecordingLink` - If true, the notification for recording start will display a link to download the cloud recording. ```javascript recordings: { recordAudioAndVideo: true, suggestRecording: false, - showPrejoinWarning: true + showPrejoinWarning: true, + showRecordingLink: true } ```