hide root from api schema

This commit is contained in:
Johannes Kirschbauer
2023-11-17 11:54:17 +01:00
parent dcd6e9e9c1
commit 3d24f9464d
2 changed files with 2 additions and 6 deletions

View File

@@ -13,7 +13,7 @@ router = APIRouter()
log = logging.getLogger(__name__)
@router.get("/{path_name:path}", tags=[Tags.root])
@router.get("/{path_name:path}", include_in_schema=False)
async def root(path_name: str) -> Response:
if path_name == "":
path_name = "index.html"

View File

@@ -33,9 +33,5 @@ tags_metadata: List[Dict[str, Any]] = [
{
"name": str(Tags.modules),
"description": "Manage cLAN modules of a flake",
},
{
"name": str(Tags.root),
"description": "This serves as the frontend delivery",
},
}
]