Revert "MM-63935 - abac end user indicators db changes (#8849)" (#8859)

This reverts commit d838f74273.
This commit is contained in:
Elias Nahum
2025-05-15 06:15:20 +08:00
committed by GitHub
parent d838f74273
commit 934ed2a773
21 changed files with 5 additions and 1012 deletions

View File

@@ -45,9 +45,6 @@ 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;
@@ -173,5 +170,3 @@ type ChannelBannerInfo = {
text?: string;
background_color?: string;
}
type ChannelAccessControlAttributes = Record<string, string[]>;

View File

@@ -56,9 +56,6 @@ declare class ChannelModel extends Model {
bannerInfo?: ChannelBannerInfo;
/** Whether the channel has Attribute-Based Access Control (ABAC) policy enforcement enabled, controlling access based on user attributes */
abacPolicyEnforced?: boolean;
/** members : Users belonging to this channel */
members: Query<ChannelMembershipModel>;