fix: ruff lint + format fixes in tests, ESLint fixes in frontend

This commit is contained in:
2026-07-17 21:28:58 +02:00
parent 341d0c6f38
commit fbb1b39b57
56 changed files with 1399 additions and 721 deletions
+13 -1
View File
@@ -9,7 +9,18 @@ from fastapi import APIRouter, FastAPI
from fastapi.middleware.cors import CORSMiddleware
from app.config import settings
from app.routers import auth, contacts, copilot, datev, files, image_retouch, ocr, sales, users, vehicles
from app.routers import (
auth,
contacts,
copilot,
datev,
files,
image_retouch,
ocr,
sales,
users,
vehicles,
)
@asynccontextmanager
@@ -49,6 +60,7 @@ api_v1_router.include_router(datev.router)
api_v1_router.include_router(copilot.router)
api_v1_router.include_router(image_retouch.router)
# Health endpoint (no auth required)
@api_v1_router.get("/health", tags=["health"])
async def health_check():