[claude] Fix moderation infinite re-review loop (#27) (#71)

This commit was merged in pull request #71.
This commit is contained in:
2026-03-23 00:44:57 +00:00
parent 42b8826d18
commit 5954a2fdc0
4 changed files with 14 additions and 4 deletions

View File

@@ -3,7 +3,7 @@ import { nostrIdentities } from "./nostr-identities";
// ── Status + reviewer types ───────────────────────────────────────────────────
export const QUEUE_STATUSES = ["pending", "approved", "rejected", "auto_approved"] as const;
export const QUEUE_STATUSES = ["pending", "approved", "rejected", "auto_approved", "flagged"] as const;
export type QueueStatus = (typeof QUEUE_STATUSES)[number];
export const QUEUE_REVIEWERS = ["timmy_ai", "admin"] as const;