@@ -223,6 +223,8 @@ def register_temporary_features(manager: FeatureManager) -> None:
223223 manager .add ("organizations:performance-transaction-deprecation-banner" , OrganizationFeature , FeatureHandlerStrategy .FLAGPOLE , api_expose = True )
224224 # Enable preprod frontend routes
225225 manager .add ("organizations:preprod-frontend-routes" , OrganizationFeature , FeatureHandlerStrategy .FLAGPOLE , api_expose = True )
226+ # Enable preprod_artifact webhook subscription UI in Sentry App settings
227+ manager .add ("organizations:preprod-artifact-webhooks" , OrganizationFeature , FeatureHandlerStrategy .FLAGPOLE , api_expose = True )
226228 # Enable preprod issue reporting
227229 manager .add ("organizations:preprod-issues" , OrganizationFeature , FeatureHandlerStrategy .FLAGPOLE , api_expose = True )
228230 # Enable preprod PR comments for build distribution
@@ -324,6 +326,8 @@ def register_temporary_features(manager: FeatureManager) -> None:
324326 # Enable GitLab as a supported SCM provider for Seer
325327 manager .add ("organizations:seer-gitlab-support" , OrganizationFeature , FeatureHandlerStrategy .FLAGPOLE , api_expose = True )
326328 # Disable select orgs from ingesting mobile replay events.
329+ # Enable double-read from EAP for session health data validation
330+ manager .add ("organizations:session-health-eap" , OrganizationFeature , FeatureHandlerStrategy .FLAGPOLE , api_expose = False )
327331 manager .add ("organizations:session-replay-video-disabled" , OrganizationFeature , FeatureHandlerStrategy .INTERNAL , api_expose = False )
328332 # Enable data scrubbing of replay recording payloads in Relay.
329333 manager .add ("organizations:session-replay-recording-scrubbing" , OrganizationFeature , FeatureHandlerStrategy .INTERNAL , api_expose = False )
@@ -427,6 +431,9 @@ def register_temporary_features(manager: FeatureManager) -> None:
427431 # Use workflow engine exclusively for ProjectRuleDetailsEndpoint.get results.
428432 # See src/sentry/workflow_engine/docs/legacy_backport.md for context.
429433 manager .add ("organizations:workflow-engine-projectruledetailsendpoint-get" , OrganizationFeature , FeatureHandlerStrategy .FLAGPOLE , api_expose = False )
434+ # Use workflow engine exclusively for OrganizationCombinedRuleIndexEndpoint.get results.
435+ # See src/sentry/workflow_engine/docs/legacy_backport.md for context.
436+ manager .add ("organizations:workflow-engine-combinedruleindex-get" , OrganizationFeature , FeatureHandlerStrategy .FLAGPOLE , api_expose = False )
430437 # Enable metric detector limits by plan type
431438 manager .add ("organizations:workflow-engine-metric-detector-limit" , OrganizationFeature , FeatureHandlerStrategy .FLAGPOLE , api_expose = True )
432439 # Enable EventUniqueUserFrequencyConditionWithConditions special alert condition
0 commit comments