frontend: simplify playRecording method by bypassing authentication check
This commit is contained in:
parent
2a9ee30759
commit
78d3d36888
@ -235,8 +235,8 @@ export class RecordingService {
|
|||||||
* @param recordingId - The ID of the recording to play
|
* @param recordingId - The ID of the recording to play
|
||||||
*/
|
*/
|
||||||
async playRecording(recordingId: string) {
|
async playRecording(recordingId: string) {
|
||||||
const privateAccess = await this.authService.isUserAuthenticated();
|
// const privateAccess = await this.authService.isUserAuthenticated();
|
||||||
const { url } = await this.generateRecordingUrl(recordingId, privateAccess);
|
const { url } = await this.generateRecordingUrl(recordingId, false);
|
||||||
window.open(url, '_blank');
|
window.open(url, '_blank');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user