Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions src/sentry/features/permanent.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,8 +114,6 @@ def register_permanent_features(manager: FeatureManager) -> None:
"organizations:sentry-pride-logo-footer": False,
# Enable priority calculations using Seer's severity endpoint
"organizations:seer-based-priority": False,
# Show Seer run ID in Slack notification footers
"organizations:seer-run-id-in-slack": False,
# Enable Vercel integration - there is a custom handler in getsentry
"organizations:integrations-vercel": True,
# Enable GitHub multi-org for users to connect many Sentry orgs to a single GitHub org.
Expand Down
2 changes: 2 additions & 0 deletions src/sentry/features/temporary.py
Original file line number Diff line number Diff line change
Expand Up @@ -340,6 +340,8 @@ def register_temporary_features(manager: FeatureManager) -> None:
manager.add("organizations:seer-slack-workflows", OrganizationFeature, FeatureHandlerStrategy.FLAGPOLE, api_expose=True)
# Enable Seer Explorer in Slack via @mentions
manager.add("organizations:seer-slack-explorer", OrganizationFeature, FeatureHandlerStrategy.FLAGPOLE, api_expose=True)
# Show Seer run ID in Slack notification footers
manager.add("organizations:seer-run-id-in-slack", OrganizationFeature, FeatureHandlerStrategy.FLAGPOLE, api_expose=False)
# Enable search query attribute validation
manager.add("organizations:search-query-attribute-validation", OrganizationFeature, FeatureHandlerStrategy.FLAGPOLE, api_expose=True)
# Enable search query builder to support explicit boolean filters
Expand Down
Loading