feat: prevent duplicate award pool notifications
All checks were successful
Build and Push Docker Image / build (push) Successful in 10m1s

Add notifiedAt field to AwardEligibility. notifyEligibleProjects now
skips already-notified entries and stamps notifiedAt after sending,
so re-clicking "Notify Pool" only emails newly added projects.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-04 00:32:14 +01:00
parent ebc6331d1f
commit 5854aa37a9
3 changed files with 16 additions and 2 deletions

View File

@@ -0,0 +1,2 @@
-- AlterTable
ALTER TABLE "AwardEligibility" ADD COLUMN "notifiedAt" TIMESTAMP(3);

View File

@@ -1622,6 +1622,9 @@ model AwardEligibility {
confirmedAt DateTime?
confirmedBy String?
// Pool notification tracking
notifiedAt DateTime?
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt