feat: implement grant application submission history (#150) - #180
Merged
Abd-Standard merged 2 commits intoAug 30, 2026
Merged
Conversation
Users can now view every work submission they made: each entry shows the submitted date/time, current review status (pending/approved/rejected), task title, and expands to reveal the work URL, attached files, and IDs. Adds listContributorSubmissions to the workflow, a GET /api/my-submissions endpoint, a status-filterable "My Submissions" dashboard page, and a nav entry, with e2e-style tests for the endpoint. 🤖 Generated with Codebuff Co-Authored-By: Codebuff <noreply@codebuff.com>
Users can save/activate grants and receive deadline reminder notifications. Reminder windows are configurable (default 7d/3d/1d/6h before deadline), each window fires at most once via dedupe keys, and expired grants are skipped and reported so they never generate notifications again. 🤖 Generated with Codebuff Co-Authored-By: Codebuff <noreply@codebuff.com>
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.
Closes #150
Summary
Allows users to view a history of their submitted work and track previous submission attempts (issue #150, GrantFox Third Campaign).
GET /api/my-submissions?contributor=<address>— new endpoint returning a contributor's submission history (newest first), including task title and task status alongside each submission record.listContributorSubmissions()intask-workflow.ts— filters the submission store by contributor, joins task metadata./my-submissions) — one card per submission attempt showing:getPublicKey()).Acceptance criteria (issue #150)
Tests
src/lib/my-submissions.test.ts— 4 tests covering the endpoint: history content (title/date/status), status changes reflected after approval, empty list for unknown contributor, 400 on missing contributor param. All passing.task-submission-e2efailures exist onmainand are unrelated to this PR.)🤖 Generated with Codebuff
Co-Authored-By: Codebuff noreply@codebuff.com