Feature/190 no notification for quotes#82
Merged
Conversation
added 4 commits
March 7, 2026 14:14
Add two new filter modes to the getPosts API to prevent unfiltered feeds from being polluted by bad actors: - filter=discover: only returns posts with 2+ likes - filter=likedByTrusted: only returns posts liked by a user the viewer trusts (cross-service call to trusted-users, cached 5min) Closes #172
…ations Adds schema support for deferred reply notifications. - pending: marks notifications hidden until activated by 2+ likes - notifiedAt: tracks when a notification became visible, used for ordering and updateSeen instead of createdAt
…atus Reply notifications are now created as pending when the reply author is not trusted or followed by the recipient. Pending notifications are activated when the reply post receives 2+ likes. - Add checkIfFollowedBy utility for worker-compatible Bluesky follow checks - notifyReply checks trust (inter-service) then follows (Bluesky API) - notifyReaction activates pending reply notifications at 2+ likes - Notification service filters pending by default, uses notifiedAt for ordering and seen tracking - Expose notifiedAt in notification API response Closes #190
…ering - notifyReply: test pending/non-pending based on trust and follow status - notifyReaction: test activation of pending notifications at 2+ likes - notifications API: fix updateSeen test to use notifiedAt
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Delay notifications for replies unless they have 2 likes or are from someone the user trusts or follows
Closes speakeasy-social/speakeasy#190