fix error with sending responses

This commit is contained in:
2026-03-10 08:19:07 +01:00
parent 756382a496
commit ecdabab5a1
28 changed files with 1255 additions and 985 deletions

View File

@@ -29,6 +29,6 @@ public class DeleteReviewEndpoint(ReviewRepository reviewRepository) : Endpoint<
}
await reviewRepository.DeleteAsync(review, ct);
await Send.OkAsync(cancellation: ct);
await Send.NoContentAsync(ct);
}
}