feat(security): extend rate limits on sync, tests, evidence and reports [FASE-3.4]
This commit is contained in:
6
backend/app/limiter.py
Normal file
6
backend/app/limiter.py
Normal file
@@ -0,0 +1,6 @@
|
||||
"""Shared SlowAPI rate limiter for all routers."""
|
||||
|
||||
from slowapi import Limiter
|
||||
from slowapi.util import get_remote_address
|
||||
|
||||
limiter = Limiter(key_func=get_remote_address)
|
||||
Reference in New Issue
Block a user