lila/apps/api
lila 59049002fc
All checks were successful
Build and Deploy / build-and-deploy (push) Successful in 1m50s
fix(api): skip rate limiting for non-sensitive auth endpoints
The authLimiter was blocking legitimate users because Better Auth's
client polls /get-session frequently (on mount, route changes, focus),
and /sign-out was also getting blocked after repeated session polls.

Skip rate limiting for:
- /get-session — read-only, requires valid cookie, no attack surface
- /sign-out — no attack value in blocking logout
- /callback/* — OAuth callbacks from providers

Brute force protection remains on /sign-in, /sign-up, and other
sensitive endpoints.
2026-04-23 22:12:38 +02:00
..
src fix(api): skip rate limiting for non-sensitive auth endpoints 2026-04-23 22:12:38 +02:00
Dockerfile updated docker pipeline to include database migrations, added dummy table to verify the pipeline works 2026-04-23 09:19:57 +02:00
package.json feat(api): add helmet security headers and rate limiting 2026-04-23 11:13:11 +02:00
tsconfig.json updating documentation, formatting 2026-04-12 09:28:35 +02:00
vitest.config.ts feat: multiplayer slice — end to end working 2026-04-18 23:32:21 +02:00