frontend: remove recording access selection logic from recording config component

This commit is contained in:
CSantosM 2026-02-09 15:16:21 +01:00
parent 1aa6c8a383
commit 0e37d8cc09
2 changed files with 0 additions and 21 deletions

View File

@ -24,23 +24,6 @@
></ov-selectable-card>
}
</div>
<!-- Recording Access Selection (only when recording is enabled) -->
@if (shouldShowAccessSection) {
<div
class="access-selection-section"
[class.slide-in-from-top]="isRecordingEnabled && !isAnimatingOut"
[class.slide-out-to-top]="isAnimatingOut"
>
<div class="access-header">
<mat-icon class="access-icon">security</mat-icon>
<div class="access-title-group">
<h4 class="access-title">Recording Access Control</h4>
<p class="access-description">Choose who can access and view the recordings</p>
</div>
</div>
</div>
}
</form>
</main>
</div>

View File

@ -150,8 +150,4 @@ export class RecordingConfigComponent implements OnDestroy {
get isRecordingEnabled(): boolean {
return this.selectedValue === 'enabled';
}
get shouldShowAccessSection(): boolean {
return this.isRecordingEnabled || this.isAnimatingOut;
}
}