You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Mute was only checked in the send path, so retries and background jobs could get around it. Moves the check to the queue, requires explicit opt-in before any reactivation send, and adds a one-tap unsubscribe that needs no login.
This change adds an opt-in gate for re-engagement notifications, enforces mute and quiet-hours at the queue level (not just the UI), and adds a frictionless one-tap unsubscribe path. No findings; the change strengthens user protections.
🟢 Adds a protection. Re-engagement messages now require explicit opt-in rather than default-on, converting what was likely a default-send into a consent-gated path. app/notifications.py
🟢 Adds a protection. A tokenized one-tap opt-out that requires no login gives users a genuinely frictionless exit from notifications, consistent with the policy requirement that exit be frictionless. app/notifications.py
🟢 clear 🟡 review 🟠 discuss 🔵 needs context. There is no red, because this check does not block anything. Scored against HumaneBench rubric v3.0, loaded verbatim, plus this repo's humane-policy.toml and the policy documents it names. Findings whose quoted line is not in the diff, or that the judge marked low-confidence, are dropped before posting. Deviations from v3 are in RUBRIC_DELTAS.md. Rubric daf4ecf, commit 000896e.
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
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.
Mute was only checked in the send path, so retries and background jobs could get around it. Moves the check to the queue, requires explicit opt-in before any reactivation send, and adds a one-tap unsubscribe that needs no login.