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: 2 additions & 0 deletions src/sentry/features/temporary.py
Original file line number Diff line number Diff line change
Expand Up @@ -443,6 +443,8 @@ def register_temporary_features(manager: FeatureManager) -> None:
manager.add("organizations:autofix-on-explorer", OrganizationFeature, FeatureHandlerStrategy.FLAGPOLE, api_expose=True)
# Enable Seer Workflows in Slack
manager.add("organizations:seer-slack-workflows", OrganizationFeature, FeatureHandlerStrategy.FLAGPOLE, api_expose=True)
# Additionally allow users with `autofix-on-explorer` flags to use this feature.
manager.add("organizations:seer-slack-workflows-explorer", OrganizationFeature, FeatureHandlerStrategy.FLAGPOLE, api_expose=True)
# Enable new compact issue alert UI in Slack
manager.add("organizations:slack-compact-alerts", OrganizationFeature, FeatureHandlerStrategy.FLAGPOLE, api_expose=True)
# Enable Seer Explorer in Slack via @mentions
Expand Down
4 changes: 3 additions & 1 deletion src/sentry/seer/entrypoints/operator.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,9 @@ def has_access(
# The explorer autofix pipeline and history is entirely separate, so the runs we trigger
# at the moment, won't be visible in-app to users with this flag.
# This check can only be removed once this feature migrates to explorer-based autofix.
if features.has("organizations:autofix-on-explorer", organization):
if features.has("organizations:autofix-on-explorer", organization) and not features.has(
"organizations:seer-slack-workflows-explorer", organization
):
return False

if entrypoint_key:
Expand Down
Loading