mirror of https://github.com/OpenVidu/openvidu.git
ov-components: update default recording stream URL in directives and config service
parent
90fd0ef44e
commit
8c28228357
|
@ -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.
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue