Skip to content

Commit

Permalink
chore(custom-views): Change feature handler strategy for custom views…
Browse files Browse the repository at this point in the history
… flag to flagpole (#74986)

title 

api_expose has been changed to True since this flag will be used on the
frontend.

associated [SOA
PR](getsentry/sentry-options-automator#2021)
  • Loading branch information
MichaelSun48 committed Jul 25, 2024
1 parent 9de90e9 commit f4351e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sentry/features/temporary.py
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ def register_temporary_features(manager: FeatureManager):
# Whether to make a side/parallel query against events -> group_attributes when searching issues
manager.add("organizations:issue-search-group-attributes-side-query", OrganizationFeature, FeatureHandlerStrategy.REMOTE, api_expose=False)
# Enable custom views features in the issue stream
manager.add("organizations:issue-stream-custom-views", OrganizationFeature, FeatureHandlerStrategy.OPTIONS, api_expose=False)
manager.add("organizations:issue-stream-custom-views", OrganizationFeature, FeatureHandlerStrategy.FLAGPOLE, api_expose=True)
# Enable the updated empty state for issues
manager.add("organizations:issue-stream-empty-state", OrganizationFeature, FeatureHandlerStrategy.REMOTE, api_expose=True)
# Enable additional platforms for issue stream empty state
Expand Down

0 comments on commit f4351e8

Please sign in to comment.