From 931b9d63bd5846cb7aba717219cd6df59f7b81d4 Mon Sep 17 00:00:00 2001
From: Carlos Santos <4a.santos@gmail.com>
Date: Fri, 17 Feb 2023 17:10:06 +0100
Subject: [PATCH] openvidu-components: Deleted unnecessary webcomponent
directive
---
.../openvidu-webcomponent.component.ts | 22 +------------------
1 file changed, 1 insertion(+), 21 deletions(-)
diff --git a/openvidu-components-angular/src/app/openvidu-webcomponent/openvidu-webcomponent.component.ts b/openvidu-components-angular/src/app/openvidu-webcomponent/openvidu-webcomponent.component.ts
index d7c4a643..d77dab53 100644
--- a/openvidu-components-angular/src/app/openvidu-webcomponent/openvidu-webcomponent.component.ts
+++ b/openvidu-components-angular/src/app/openvidu-webcomponent/openvidu-webcomponent.component.ts
@@ -2,7 +2,6 @@ import { Component, ElementRef, EventEmitter, Input, OnInit, Output } from '@ang
import { OpenViduService, ParticipantAbstractModel, RecordingInfo, TokenModel } from 'openvidu-angular';
import { Session } from 'openvidu-browser';
import { CaptionsLangOption } from '../../../projects/openvidu-angular/src/lib/models/caption.model';
-import { StreamingInfo } from '../../../projects/openvidu-angular/src/lib/models/streaming.model';
/**
*
@@ -142,12 +141,6 @@ export class OpenviduWebComponentComponent implements OnInit {
*/
_recordingActivityRecordingsList: RecordingInfo[] = [];
- /**
- * @internal
- * TODO: Remove this directive when RTMP Exported was included on OV and streaming ready event was fired.
- */
- _streamingActivityStreamingInfo: StreamingInfo;
-
/**
* @internal
*/
@@ -544,19 +537,6 @@ export class OpenviduWebComponentComponent implements OnInit {
this._activitiesPanelStreamingActivity = this.castToBoolean(value);
}
- /**
- * The **streamingActivityStreamingInfo** attribute allows show to show the live streaming info in {@link StreamingActivityComponent}.
- *
- * Default: `undefined`
- *
- * @example
- *
- */
- @Input() set streamingActivityStreamingInfo(value: StreamingInfo) {
- this._streamingActivityStreamingInfo = value;
- }
-
-
/**
* The **streamingActivityStreamingError** attribute allows to show any possible error with the streaming in the {@link StreamingActivityComponent}.
*
@@ -565,7 +545,7 @@ export class OpenviduWebComponentComponent implements OnInit {
* @example
*
*/
- @Input() set streamingActivityStreamingError(value: any) {
+ @Input() set streamingActivityStreamingError(value: any) {
this._streamingActivityStreamingError = value;
}