Skip to content

Commit 567fe72

Browse files
authored
ref(issue-views): move cross-project selection to flagpole-configured (#95377)
`organizations:global-views` enables cross-project selection - move this to `temporary` so that it can be configured by flagpole instead. No immediate effect, since `getsentry` will set it first. See https://linear.app/getsentry/issue/ID-724/enable-cross-project-selection-for-all-plans
1 parent 567ffec commit 567fe72

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/sentry/features/permanent.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,6 @@ def register_permanent_features(manager: FeatureManager):
4848
"organizations:dynamic-sampling": False,
4949
# Enable attaching arbitrary files to events.
5050
"organizations:event-attachments": True,
51-
# Enable multi project selection
52-
"organizations:global-views": False,
5351
# Enable incidents feature
5452
"organizations:incidents": False,
5553
# Enable integration functionality to work with alert rules

src/sentry/features/temporary.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -134,6 +134,8 @@ def register_temporary_features(manager: FeatureManager):
134134
manager.add("organizations:gen-ai-consent", OrganizationFeature, FeatureHandlerStrategy.FLAGPOLE, api_expose=True)
135135
# Enable disabling gitlab integrations when broken is detected
136136
manager.add("organizations:gitlab-disable-on-broken", OrganizationFeature, FeatureHandlerStrategy.FLAGPOLE, api_expose=False)
137+
# Enable multi project selection
138+
manager.add("organizations:global-views", OrganizationFeature, FeatureHandlerStrategy.FLAGPOLE, default=False, api_expose=True)
137139
# Enable increased issue_owners rate limit for auto-assignment
138140
manager.add("organizations:increased-issue-owners-rate-limit", OrganizationFeature, FeatureHandlerStrategy.INTERNAL, api_expose=False)
139141
# Starfish: extract metrics from the spans

0 commit comments

Comments
 (0)