fix: status code on issue cycle create

This commit is contained in:
pablohashescobar 2022-12-20 15:50:32 +05:30
parent 27071d5323
commit b40bcdace2

View File

@ -113,5 +113,5 @@ class CycleIssueViewSet(BaseViewSet):
capture_exception(e)
return Response(
{"error": "Something went wrong please try again later"},
status=status.HTTP_200_OK,
status=status.HTTP_500_INTERNAL_SERVER_ERROR,
)