diff --git a/src/sentry/features/temporary.py b/src/sentry/features/temporary.py index dfc2b17b9439..c0e21c23d369 100644 --- a/src/sentry/features/temporary.py +++ b/src/sentry/features/temporary.py @@ -108,6 +108,8 @@ def register_temporary_features(manager: FeatureManager): manager.add("organizations:dashboards-edit-access", OrganizationFeature, FeatureHandlerStrategy.FLAGPOLE, api_expose=True) # Enable share links for dashboards for sharing outside the org manager.add("organizations:dashboards-share", OrganizationFeature, FeatureHandlerStrategy.FLAGPOLE, api_expose=True) + # Enable favouriting dashboards + manager.add("organizations:dashboards-favourite", OrganizationFeature, FeatureHandlerStrategy.FLAGPOLE, api_expose=True) # Enable the dev toolbar PoC code for employees # Data Secrecy manager.add("organizations:data-secrecy", OrganizationFeature, FeatureHandlerStrategy.FLAGPOLE, api_expose=True)