migrate from swagger to openapi3

This commit is contained in:
Athou
2023-12-17 12:46:44 +01:00
parent 50fcdece86
commit b5d99b9661
36 changed files with 1299 additions and 1272 deletions

View File

@@ -6,7 +6,7 @@ function ApiDocumentationPage() {
return (
// force white background because swagger is unreadable with dark theme
<Box style={{ backgroundColor: "#fff" }}>
<SwaggerUI url="swagger/swagger.json" />
<SwaggerUI url="openapi/openapi.json" />
</Box>
)
}