@@ -553,14 +553,16 @@ def register_temporary_features(manager: FeatureManager):
553
553
manager .add ("organizations:github-multi-org" , OrganizationFeature , FeatureHandlerStrategy .FLAGPOLE , api_expose = False )
554
554
# Enable seeing upsell modal when clicking upgrade for multi-org
555
555
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 )
558
558
559
559
# NOTE: Don't add features down here! Add them to their specific group and sort
560
560
# them alphabetically! The order features are registered is not important.
561
561
562
562
# Project scoped features #
563
563
###########################
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 )
564
566
# Adds additional filters and a new section to issue alert rules.
565
567
manager .add ("projects:alert-filters" , ProjectFeature , FeatureHandlerStrategy .INTERNAL , default = True )
566
568
manager .add ("projects:discard-transaction" , ProjectFeature , FeatureHandlerStrategy .INTERNAL , api_expose = False )
0 commit comments