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
Add wl reject command and restrict accept/reject to poster-only
Accept and reject now require the caller to be the original poster.
Accept retains the existing self-accept guard (completer != acceptor).
Reject reverts in_review → claimed by deleting the completion record,
allowing the worker to re-submit via wl done.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
query:=fmt.Sprintf(`SELECT id, title, status, COALESCE(claimed_by, '') as claimed_by FROM wanted WHERE id='%s';`,
286
+
query:=fmt.Sprintf(`SELECT id, title, status, COALESCE(claimed_by, '') as claimed_by, COALESCE(posted_by, '') as posted_by FROM wanted WHERE id='%s';`,
0 commit comments