hide root from api schema
This commit is contained in:
@@ -6,14 +6,13 @@ from pathlib import Path
|
|||||||
from fastapi import APIRouter, Response
|
from fastapi import APIRouter, Response
|
||||||
|
|
||||||
from ..assets import asset_path
|
from ..assets import asset_path
|
||||||
from ..tags import Tags
|
|
||||||
|
|
||||||
router = APIRouter()
|
router = APIRouter()
|
||||||
|
|
||||||
log = logging.getLogger(__name__)
|
log = logging.getLogger(__name__)
|
||||||
|
|
||||||
|
|
||||||
@router.get("/{path_name:path}", include_in_schema=False)
|
@router.get("/{path_name:path}", include_in_schema=False)
|
||||||
async def root(path_name: str) -> Response:
|
async def root(path_name: str) -> Response:
|
||||||
if path_name == "":
|
if path_name == "":
|
||||||
path_name = "index.html"
|
path_name = "index.html"
|
||||||
|
|||||||
@@ -33,5 +33,5 @@ tags_metadata: List[Dict[str, Any]] = [
|
|||||||
{
|
{
|
||||||
"name": str(Tags.modules),
|
"name": str(Tags.modules),
|
||||||
"description": "Manage cLAN modules of a flake",
|
"description": "Manage cLAN modules of a flake",
|
||||||
}
|
},
|
||||||
]
|
]
|
||||||
|
|||||||
Reference in New Issue
Block a user