Disable API docs that display very much broken due to missing request/response typing.

This commit is contained in:
2026-01-27 23:27:42 +00:00
parent 13c49aebfd
commit 3d49cbf2d6
6 changed files with 12 additions and 6 deletions
+1 -1
View File
@@ -26,7 +26,7 @@ from paskia.util import hostutil, htmlutil, passphrase, userinfo, vitedev
bearer_auth = HTTPBearer(auto_error=True)
app = FastAPI()
app = FastAPI(docs_url=None, redoc_url=None, openapi_url=None)
app.mount("/user", user.app)