-
Notifications
You must be signed in to change notification settings - Fork 3.2k
feat(tasks): add task-centric activity feed endpoint #72793
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
b8c4a08
feat(tasks): add task-centric activity feed endpoint
k11kirky 3d36de5
feat(tasks): persist per-user activity projections
k11kirky 2e91bf5
fix(tasks): make the activity feed work and track read per task
k11kirky 1c27ba1
chore(tasks): register TaskActivity for IDOR scoping checks
k11kirky 256aa19
chore: update OpenAPI generated types
tests-posthog[bot] 94c61e3
fix(tasks): unpaginate the activity list and use a uuid7 primary key
k11kirky 39c5514
chore: update OpenAPI generated types
tests-posthog[bot] fc24806
fix(tasks): type the activity list as the envelope it actually returns
k11kirky fe9ab42
chore: update OpenAPI generated types
tests-posthog[bot] 7c38ba3
chore(tasks): annotate the activity queryset helper's return type
k11kirky 3cdd510
Merge branch 'master' into posthog-code/task-activity-feed
k11kirky 038b8ea
fix(tasks): make activity reads race-safe
k11kirky 7827392
fix(tasks): scope activity projection test query
k11kirky a52b63f
fix(tasks): report completed activity accurately
k11kirky f7de08e
fix(tasks): project interactive turn completion
k11kirky fa962fc
Merge branch 'master' into posthog-code/task-activity-feed
k11kirky c4abdd2
fix(tasks): separate completed turn push cooldown
k11kirky File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
When an awaiting-input notification is replayed after the user reads the task or newer activity arrives, assigning
django_timezone.now()makes the old event win the newest-wins upsert and resetsread_atto null, causing a stale awaiting-input row and unread badge.Prompt To Fix With AI