fix: status creating fix

This commit is contained in:
2025-08-08 11:28:56 +04:00
parent 3b1b6f0523
commit 71c0901909
2 changed files with 2 additions and 4 deletions

View File

@ -26,7 +26,7 @@ class StatusService:
async def create_status(self, request: CreateStatusRequest) -> CreateStatusResponse:
status = await self.repository.create(request.status)
return CreateStatusResponse(
board=StatusSchema.model_validate(status),
status=StatusSchema.model_validate(status),
message="Статус успешно создан",
)