jerry vor 2 Wochen
Ursprung
Commit
42b9611301
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  1. 1 1
      app/api/router.py

+ 1 - 1
app/api/router.py

@@ -628,7 +628,7 @@ async def account_remove(
     await AccountService.remove_account(db, account_id)
     return success()
 
-@admin_required_router.put("/account/update", summary="更新账号", tags=["账号管理"], response_model=ApiResponse[ProxyOut])
+@admin_required_router.put("/account/update", summary="更新账号", tags=["账号管理"], response_model=ApiResponse[AccountOut])
 async def account_update(
     account_id: int,
     payload: AccountUpdate,