From 0e37d8cc099f4a7abb11bed5a6744aef3ac9cb2c Mon Sep 17 00:00:00 2001 From: CSantosM <4a.santos@gmail.com> Date: Mon, 9 Feb 2026 15:16:21 +0100 Subject: [PATCH] frontend: remove recording access selection logic from recording config component --- .../recording-config.component.html | 17 ----------------- .../recording-config.component.ts | 4 ---- 2 files changed, 21 deletions(-) diff --git a/meet-ce/frontend/projects/shared-meet-components/src/lib/domains/rooms/pages/room-wizard/steps/recording-config/recording-config.component.html b/meet-ce/frontend/projects/shared-meet-components/src/lib/domains/rooms/pages/room-wizard/steps/recording-config/recording-config.component.html index 1a8c8a22..51e6627d 100644 --- a/meet-ce/frontend/projects/shared-meet-components/src/lib/domains/rooms/pages/room-wizard/steps/recording-config/recording-config.component.html +++ b/meet-ce/frontend/projects/shared-meet-components/src/lib/domains/rooms/pages/room-wizard/steps/recording-config/recording-config.component.html @@ -24,23 +24,6 @@ > } - - - @if (shouldShowAccessSection) { -
-
- security -
-

Recording Access Control

-

Choose who can access and view the recordings

-
-
-
- } diff --git a/meet-ce/frontend/projects/shared-meet-components/src/lib/domains/rooms/pages/room-wizard/steps/recording-config/recording-config.component.ts b/meet-ce/frontend/projects/shared-meet-components/src/lib/domains/rooms/pages/room-wizard/steps/recording-config/recording-config.component.ts index 0c9bc334..c2196cd8 100644 --- a/meet-ce/frontend/projects/shared-meet-components/src/lib/domains/rooms/pages/room-wizard/steps/recording-config/recording-config.component.ts +++ b/meet-ce/frontend/projects/shared-meet-components/src/lib/domains/rooms/pages/room-wizard/steps/recording-config/recording-config.component.ts @@ -150,8 +150,4 @@ export class RecordingConfigComponent implements OnDestroy { get isRecordingEnabled(): boolean { return this.selectedValue === 'enabled'; } - - get shouldShowAccessSection(): boolean { - return this.isRecordingEnabled || this.isAnimatingOut; - } }