feat: return workspace and project details in estimate endpoints (#1009)
This commit is contained in:
parent
5b0dc43bae
commit
336220bd98
2 changed files with 7 additions and 1 deletions
|
|
@ -53,7 +53,7 @@ class BulkEstimatePointEndpoint(BaseViewSet):
|
|||
try:
|
||||
estimates = Estimate.objects.filter(
|
||||
workspace__slug=slug, project_id=project_id
|
||||
).prefetch_related("points")
|
||||
).prefetch_related("points").select_related("workspace", "project")
|
||||
serializer = EstimateReadSerializer(estimates, many=True)
|
||||
return Response(serializer.data, status=status.HTTP_200_OK)
|
||||
except Exception as e:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue