From 8b5d382d2a8e000a872d96e97df23d6de861cb2b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pablo=20V=C3=A9lez?= Date: Thu, 15 May 2025 16:29:17 +0200 Subject: [PATCH] MM-63935- abac end user indicators db fix (#8862) --- types/api/channels.d.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/types/api/channels.d.ts b/types/api/channels.d.ts index c26115a42..90e62b331 100644 --- a/types/api/channels.d.ts +++ b/types/api/channels.d.ts @@ -45,6 +45,9 @@ type Channel = { group_constrained: boolean|null; shared: boolean; banner_info?: ChannelBannerInfo; + + /** Whether the channel has Attribute-Based Access Control (ABAC) policy enforcement enabled, controlling access based on user attributes */ + policy_enforced?: boolean; }; type ChannelPatch = { name?: string;