Skip to content

Commit 671e07c

Browse files
authored
chore(rollback): Expose feature flag to API (#80431)
Initially created here, but was not being exposed: #80031 We will need this to check this on the Sentry app frontend in order to display the entry point UI.
1 parent dacb243 commit 671e07c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/sentry/features/temporary.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -360,7 +360,7 @@ def register_temporary_features(manager: FeatureManager):
360360
# Enable version 2 of reprocessing (completely distinct from v1)
361361
manager.add("organizations:reprocessing-v2", OrganizationFeature, FeatureHandlerStrategy.INTERNAL, api_expose=False)
362362
# Enable Sentry's 2024 Rollback feature
363-
manager.add("organizations:sentry-rollback-2024", OrganizationFeature, FeatureHandlerStrategy.FLAGPOLE, api_expose=False)
363+
manager.add("organizations:sentry-rollback-2024", OrganizationFeature, FeatureHandlerStrategy.FLAGPOLE, api_expose=True)
364364
# Enable resolve in upcoming release
365365
# TODO(steve): Remove when we remove the feature from the UI
366366
manager.add("organizations:resolve-in-upcoming-release", OrganizationFeature, FeatureHandlerStrategy.OPTIONS, api_expose=True)

0 commit comments

Comments
 (0)