ov-components: update default recording stream URL in directives and config service

master
Carlos Santos 2025-03-23 14:25:35 +01:00
parent 90fd0ef44e
commit 8c28228357
2 changed files with 2 additions and 2 deletions

View File

@ -735,7 +735,7 @@ export class AudioEnabledDirective implements OnDestroy {
*
* {recordingStreamBaseUrl}/{recordingId}/stream
*
* Default: `"/{recordingId}/stream"`
* Default: `"call/api/recordings/{recordingId}/stream"`
*
* It is essential that the resulting route is declared and configured on your backend, as it is
* used for serving and accessing the recording streams.

View File

@ -33,7 +33,7 @@ export class OpenViduComponentsConfigService {
private audioEnabled = <BehaviorSubject<boolean>>new BehaviorSubject(true);
audioEnabled$: Observable<boolean>;
private recordingStreamBaseUrl = <BehaviorSubject<string>>new BehaviorSubject('');
private recordingStreamBaseUrl = <BehaviorSubject<string>>new BehaviorSubject('call/api/recordings');
recordingStreamBaseUrl$: Observable<string>;
//Toolbar settings