From 756196e2a8c65fdf19acae6558f61a4e6bf7e4bf Mon Sep 17 00:00:00 2001 From: Tyler Date: Sat, 20 Jun 2026 18:15:38 -0600 Subject: [PATCH] feat(sp6): add REJECTED to ClaimState enum T1 of the SP6 workflow automation plan. Paired with the existing test in test_db_models.py that asserts 8 ClaimState values. --- backend/src/cyclone/db.py | 1 + 1 file changed, 1 insertion(+) diff --git a/backend/src/cyclone/db.py b/backend/src/cyclone/db.py index 516d621..7eaa2b2 100644 --- a/backend/src/cyclone/db.py +++ b/backend/src/cyclone/db.py @@ -123,6 +123,7 @@ def SessionLocal() -> sessionmaker[sa.orm.Session]: class ClaimState(str, enum.Enum): SUBMITTED = "submitted" RECEIVED = "received" + REJECTED = "rejected" # NEW — set by 999 AK9 set-level R/E PAID = "paid" PARTIAL = "partial" DENIED = "denied"