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
@@ -10,7 +10,7 @@ from paskia.globals import passkey
from paskia.util import hostutil, passphrase
# Create a FastAPI subapp for WebSocket endpoints
app = FastAPI()
app = FastAPI(docs_url=None, redoc_url=None, openapi_url=None)
# Mount the remote auth WebSocket endpoints
app.mount("/remote-auth", remote.app)