audio streaming app plyr.fm
38
fork

Configure Feed

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

config: bump upload rate limit from 5/min to 20/min (#746)

5/minute was too aggressive - integration tests hit it, and it's
unnecessarily restrictive for normal usage.

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

Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>

authored by

nate nowack
Claude Opus 4.5
and committed by
GitHub
7b2a47f6 0918440b

+1 -1
+1 -1
backend/src/backend/config.py
··· 649 649 description="Rate limit for authentication endpoints", 650 650 ) 651 651 upload_limit: str = Field( 652 - default="5/minute", 652 + default="20/minute", 653 653 description="Rate limit for file uploads", 654 654 ) 655 655