Make create house work

This commit is contained in:
Jacob Windsor
2025-02-19 14:48:56 +01:00
parent 2e70664620
commit cb8b1469cf
9 changed files with 57 additions and 20 deletions
+1 -1
View File
@@ -24,7 +24,7 @@ async def create_house(body: HouseCreateRequest, auth: Annotated[AuthContext, De
await house_repository.save(house)
return HouseCreateResponse(
id=house.id
id=str(house.id)
)