Skip to content

Commit 0f9568c

Browse files
1 parent d3dc472 commit 0f9568c

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/sentry/features/temporary.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -553,14 +553,16 @@ def register_temporary_features(manager: FeatureManager):
553553
manager.add("organizations:github-multi-org", OrganizationFeature, FeatureHandlerStrategy.FLAGPOLE, api_expose=False)
554554
# Enable seeing upsell modal when clicking upgrade for multi-org
555555
manager.add("organizations:github-multi-org-upsell-modal", OrganizationFeature, FeatureHandlerStrategy.FLAGPOLE, api_expose=True)
556-
# Enables quick testing of disabling transaction name clustering for a project.
557-
manager.add("projects:transaction-name-clustering-disabled", ProjectFeature, FeatureHandlerStrategy.FLAGPOLE, api_expose=False, default=False)
556+
# Enables new billing-related UI (checkout, subscription page)
557+
manager.add("organizations:checkout-v3", OrganizationFeature, FeatureHandlerStrategy.FLAGPOLE, api_expose=True)
558558

559559
# NOTE: Don't add features down here! Add them to their specific group and sort
560560
# them alphabetically! The order features are registered is not important.
561561

562562
# Project scoped features #
563563
###########################
564+
# Enables quick testing of disabling transaction name clustering for a project.
565+
manager.add("projects:transaction-name-clustering-disabled", ProjectFeature, FeatureHandlerStrategy.FLAGPOLE, api_expose=False, default=False)
564566
# Adds additional filters and a new section to issue alert rules.
565567
manager.add("projects:alert-filters", ProjectFeature, FeatureHandlerStrategy.INTERNAL, default=True)
566568
manager.add("projects:discard-transaction", ProjectFeature, FeatureHandlerStrategy.INTERNAL, api_expose=False)

0 commit comments

Comments
 (0)