Browse Source

feat(whats-new): Add feature flag (#76819)

Priscila Oliveira 6 months ago
parent
commit
3734c98e0d
1 changed files with 2 additions and 0 deletions
  1. 2 0
      src/sentry/features/temporary.py

+ 2 - 0
src/sentry/features/temporary.py

@@ -510,6 +510,8 @@ def register_temporary_features(manager: FeatureManager):
     manager.add("organizations:widget-viewer-modal-minimap", OrganizationFeature, FeatureHandlerStrategy.FLAGPOLE, api_expose=True)
     # Enabled unresolved issue webhook for organization
     manager.add("organizations:webhooks-unresolved", OrganizationFeature, FeatureHandlerStrategy.OPTIONS, api_expose=True)
+    # Display the new 'what's new' experience
+    manager.add("organizations:what-is-new-revamp", OrganizationFeature, FeatureHandlerStrategy.FLAGPOLE, api_expose=True)
     # NOTE: Don't add features down here! Add them to their specific group and sort
     #       them alphabetically! The order features are registered is not important.