feat: grant comparison (#153), deadline reminders (#151), grant reporting (#158) - #172
Open
ZacLou wants to merge 3 commits into
Open
feat: grant comparison (#153), deadline reminders (#151), grant reporting (#158)#172ZacLou wants to merge 3 commits into
ZacLou wants to merge 3 commits into
Conversation
added 3 commits
August 29, 2026 00:58
Core-Foundry#157), moderation queue (Core-Foundry#159) - Core-Foundry#154: Levenshtein-based title similarity + org/description overlap detection Flags potential duplicates for admin review without blocking creation - Core-Foundry#157: Structured eligibility fields (location, applicant type, project stage, team size, custom requirements) with validation and display formatting - Core-Foundry#159: Admin moderation queue with enqueue/list/approve/reject/dismiss Auto-enqueues new tasks and duplicate flags for review - Integrated into createTask: duplicate detection + auto-moderation on creation - Added API routes: GET /api/moderation, GET/POST /api/moderation/:itemId - 30+ unit tests covering all three features
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Summary
This PR implements three GrantFox Third Campaign issues:
Issue #153: Add Grant Comparison Functionality
grant-comparison.tswith in-memory comparison set per usercreateComparison()— create/replace a comparison (min 2, max 5 grants)addToComparison()/removeFromComparison()— incremental updatesclearComparison()— clear the entire setIssue #151: Add Deadline Reminder Notifications
deadline-reminder.tswith configurable reminder timingsscheduleReminders()— creates reminder entries based on user settingsprocessDueReminders()— sends notifications when reminder time arrivescancelRemindersForTask()— cleanup when unbookmarkingnotification-store.tsIssue #158: Add Grant Reporting for Incorrect Information
grant-report-store.tswith 6 report reasons (outdated, incorrect, suspicious, incomplete, spam, other)submitReport()— user submits a report with reason + descriptionlistReports()— admin views all reports with status/task filtersmarkReviewing()/resolveReport()— admin workflowgetReportsForTask()— per-task report listingAPI Routes
GET/POST /api/comparison— get, create, add, remove, clearGET/PATCH /api/reminders— get settings, update settings, view pendingGET/POST /api/reports— list with filters, submit new reportTests
Closes #153
Closes #151
Closes #158