Skip to content

Commit

Permalink
Add: 設定にタグを追加 (#559)
Browse files Browse the repository at this point in the history
Co-authored-by: Hiroshiba <hihokaruta@gmail.com>
  • Loading branch information
sevenc-nanashi and Hiroshiba committed Jan 3, 2023
1 parent 755b976 commit 64339ee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions run.py
Original file line number Diff line number Diff line change
Expand Up @@ -892,7 +892,7 @@ def supported_devices(
def engine_manifest():
return engine_manifest_loader.load_manifest()

@app.get("/setting", response_class=HTMLResponse)
@app.get("/setting", response_class=HTMLResponse, tags=["設定"])
def setting_get(request: Request):
settings = setting_loader.load_setting_file()

Expand All @@ -911,7 +911,7 @@ def setting_get(request: Request):
},
)

@app.post("/setting", response_class=HTMLResponse)
@app.post("/setting", response_class=HTMLResponse, tags=["設定"])
def setting_post(
request: Request,
cors_policy_mode: Optional[str] = Form(None), # noqa: B008
Expand Down

0 comments on commit 64339ee

Please sign in to comment.