Skip to content

Commit a00103b

Browse files
feat(feature-flag): Add new feature flag to control the removal of multiselect platforms in the onboarding (#43871)
1 parent 7487052 commit a00103b

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

src/sentry/conf/server.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1218,6 +1218,8 @@ def SOCIAL_AUTH_DEFAULT_USERNAME():
12181218
"organizations:mobile-view-hierarchies": False,
12191219
# Enable the onboarding heartbeat footer on the sdk setup page
12201220
"organizations:onboarding-heartbeat-footer": False,
1221+
# Disables multiselect platform in the onboarding flow
1222+
"organizations:onboarding-remove-multiselect-platform": False,
12211223
# Enable ANR rates in project details page
12221224
"organizations:anr-rate": False,
12231225
# Enable tag improvements in the issue details page

src/sentry/features/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -203,6 +203,7 @@
203203
default_manager.add("organizations:integrations-stacktrace-link", OrganizationFeature)
204204
default_manager.add("organizations:integrations-ticket-rules", OrganizationFeature)
205205
default_manager.add("organizations:onboarding-heartbeat-footer", OrganizationFeature, True)
206+
default_manager.add("organizations:onboarding-remove-multiselect-platform", OrganizationFeature, True)
206207
default_manager.add("organizations:performance-view", OrganizationFeature)
207208
default_manager.add("organizations:profile-blocked-main-thread-ingest", OrganizationFeature)
208209
default_manager.add("organizations:relay", OrganizationFeature)

0 commit comments

Comments
 (0)