feat(action log): Use GALE in GroupActivitiesEndpoint - #120282
Conversation
| { | ||
| "activity": serialized, | ||
| } | ||
| ) |
There was a problem hiding this comment.
Stale or deleted comments in GALE feed
Medium Severity
When projects:issue-action-log-read-from-gale is on, this endpoint returns raw GALE rows as the activity feed. GALE is append-only: comment edits add COMMENT_EDIT without updating the original COMMENT text, and deletes add COMMENT_DELETE without removing the original. Unlike Activity, which updates notes in place and drops deleted ones, clients can see outdated comment text and comments that were already deleted.
Reviewed by Cursor Bugbot for commit 7557b1f. Configure here.
There was a problem hiding this comment.
yeah that's fine, I'm dealing with that in #120288 doesn't really affect this one which is just reading
7557b1f to
7848079
Compare
0f31c42 to
9922831
Compare
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes and found 1 potential issue.
There are 2 total unresolved issues (including 1 from previous review).
❌ Bugbot Autofix is OFF. To automatically fix reported issues with cloud agents, enable autofix in the Cursor dashboard.
Reviewed by Cursor Bugbot for commit 9922831. Configure here.


Now that we have the
GroupActionLogEntrySerializerwe can use it in the remaining endpoints that serializeActivityand swap inGroupActionLogEntries. This PR swaps it in for theGroupActivitiesEndpoint.