From 1be268898ef1a7b59b55de3543e6db83b89ae60d Mon Sep 17 00:00:00 2001 From: Raj Joshi Date: Tue, 23 Jul 2024 11:49:25 -0700 Subject: [PATCH] chore(data-secrecy): FF for Data Secrecy (#74749) Made FF for Data Secrecy, needed to expose in API since FE needs to have access to render UI. --- src/sentry/features/temporary.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/sentry/features/temporary.py b/src/sentry/features/temporary.py index 2236f5b4fe9ac4..13af8c1b476a83 100644 --- a/src/sentry/features/temporary.py +++ b/src/sentry/features/temporary.py @@ -83,6 +83,8 @@ def register_temporary_features(manager: FeatureManager): # Enable release health widget in dashboards manager.add("organizations:dashboards-rh-widget", OrganizationFeature, FeatureHandlerStrategy.REMOTE, api_expose=True) manager.add("organizations:dashboards-span-metrics", OrganizationFeature, FeatureHandlerStrategy.OPTIONS, api_expose=False) + # Enable data secrecy + manager.add("organizations:data-secrecy", OrganizationFeature, FeatureHandlerStrategy.FLAGPOLE, api_expose=True) # Enable the dev toolbar PoC code for employees manager.add("organizations:devtoolbar", OrganizationFeature, FeatureHandlerStrategy.FLAGPOLE, default=False, api_expose=True) # Delightful Developer Metrics (DDM):