feat(issues): Add activity feed v2 flag#115966
Conversation
Adds the exposed org flag for the issue activity feed v2 UI. The frontend stack can key off activity-feed-v2 without bundling the flag registration in the UI PR. Co-Authored-By: Codex GPT-5 <noreply@openai.com>
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes and found 1 potential issue.
❌ Bugbot Autofix is OFF. To automatically fix reported issues with cloud agents, enable autofix in the Cursor dashboard.
Reviewed by Cursor Bugbot for commit 036dbe6. Configure here.
| # Enable core Session Replay link in the sidebar | ||
| manager.add("organizations:session-replay-ui", OrganizationFeature, FeatureHandlerStrategy.INTERNAL, default=True, api_expose=True) | ||
| # Enable v2 issue activity feed UI | ||
| manager.add("organizations:activity-feed-v2", OrganizationFeature, FeatureHandlerStrategy.FLAGPOLE, api_expose=True) |
There was a problem hiding this comment.
Feature flag placed out of alphabetical order
Low Severity
The organizations:activity-feed-v2 flag is inserted at line 333 between session-replay-ui and issue-details-new-stack-trace, violating the file's explicit instruction (line 30) to "maintain alphabetical order when adding new feature flags." All other "a"-prefixed organization flags (alert-allow-indexed, ai-issue-detection, anomaly-detection-eap, etc.) are grouped near lines 48–56, which is where this flag belongs alphabetically.
Reviewed by Cursor Bugbot for commit 036dbe6. Configure here.
Backend Test FailuresFailures on
|


Adds the exposed org flag for the issue activity feed v2 UI.