this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add new statuses to API validation

Updates validStatuses array to include 'ignore' and 'ready_to_ship'.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>

alice edcca696 f7ff72b4

+1 -1
+1 -1
src/web/api.ts
··· 159 159 return jsonResponse({ error: 'Missing path or status' }, 400); 160 160 } 161 161 162 - const validStatuses: ProjectStatus[] = ['shipped', 'in_progress', 'abandoned', 'one_off', 'experiment']; 162 + const validStatuses: ProjectStatus[] = ['shipped', 'in_progress', 'ready_to_ship', 'abandoned', 'ignore', 'one_off', 'experiment']; 163 163 if (!validStatuses.includes(body.status)) { 164 164 return jsonResponse({ error: 'Invalid status' }, 400); 165 165 }