Skip to content

Commit 7d8982e

Browse files
committed
[DOP-23620] Fix OpenAPI.json version
1 parent 59643b9 commit 7d8982e

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

docs/_static/redoc.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<meta charset="utf-8"/>
88
<meta name="viewport" content="width=device-width, initial-scale=1">
99

10-
<link rel="shortcut icon" href="../_static/icon.svg">
10+
<link rel="shortcut icon" href="../../_static/icon.svg">
1111
<!--
1212
ReDoc doesn't change outer page styles
1313
-->

docs/_static/swagger.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
/>
1010
<title>SwaggerUI</title>
1111
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/swagger-ui-dist@5/swagger-ui.css" />
12-
<link rel="shortcut icon" href="../_static/icon.svg">
12+
<link rel="shortcut icon" href="../../_static/icon.svg">
1313
</head>
1414
<body>
1515
<div id="swagger-ui"></div>

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565

6666
swagger = [
6767
{
68-
"name": "syncmaster REST API",
68+
"name": "SyncMaster REST API",
6969
"page": "openapi",
7070
"id": "syncmaster-api",
7171
"options": {

syncmaster/server/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def celery_factory(settings: Settings) -> Celery:
3535

3636
def application_factory(settings: Settings) -> FastAPI:
3737
application = FastAPI(
38-
title="Syncmaster",
38+
title="SyncMaster",
3939
version=syncmaster_version,
4040
debug=settings.server.debug,
4141
# will be set up by middlewares

0 commit comments

Comments
 (0)