Skip to content

Commit

Permalink
Make info entrypoint consistent with the rest of the API
Browse files Browse the repository at this point in the history
All other entrypoints end with a /, so `info` should as well.
  • Loading branch information
kbevers committed Nov 6, 2024
1 parent f9fc11d commit aa38e4b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webproj/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -504,7 +504,7 @@ async def transformation_4d(
return {"v1": v1, "v2": v2, "v3": v3, "v4": v4}


@app.get("/v1.2/info")
@app.get("/v1.2/info/")
async def info() -> WEBPROJInfo:
"""
Retrieve information about the running instance of WEBPROJ and it's constituent components.
Expand Down

0 comments on commit aa38e4b

Please sign in to comment.