diff options
Diffstat (limited to 'apirouters/customize_ship.py')
-rw-r--r-- | apirouters/customize_ship.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/apirouters/customize_ship.py b/apirouters/customize_ship.py index 7be3279..c69d421 100644 --- a/apirouters/customize_ship.py +++ b/apirouters/customize_ship.py @@ -11,6 +11,7 @@ class RenameBody(BaseModel): name: str +# TODO depend on ship instead of auth_agent @router.post("/customize_ship/{ship_symbol}/rename") async def rename(ship_symbol: str, rename_body: RenameBody, agent: Annotated[Agent, Depends(auth_agent)]): for current_ship in agent.ships.values(): |