feat: username field in market registration

This commit is contained in:
2026-07-26 21:25:33 +08:00
parent 6cb0759630
commit 605830ac34
2 changed files with 4 additions and 1 deletions
+1
View File
@@ -533,6 +533,7 @@ async def api_market_register(data: dict):
"email": data.get("email"),
"password": data.get("password"),
"passwordConfirm": data.get("passwordConfirm"),
"name": data.get("name", ""),
}
)
return resp.json()