fix(docs): cambiar ruta /docs → /documentacion para evitar conflicto con Swagger FastAPI

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Lizandro Guarnizo
2026-08-04 19:47:43 -05:00
co-authored by Claude Sonnet 4.6
parent b927fd7ec0
commit 15cf6b3675
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
from fastapi import APIRouter, Request, Depends
from app.auth import get_current_user
router = APIRouter(prefix="/docs", tags=["docs"])
router = APIRouter(prefix="/documentacion", tags=["docs"])
@router.get("")