fix delete return codes
All checks were successful
Build and Deploy API / build-and-deploy (push) Successful in 8s

This commit is contained in:
2026-03-14 15:59:08 -05:00
parent ea0afc4e62
commit 60215782c0

View File

@@ -57,7 +57,7 @@ public class UsersController : ControllerBase
{ {
var success = await service_.Delete(id); var success = await service_.Delete(id);
if (success) return NotFound(); if (!success) return NotFound();
return NoContent(); return NoContent();
} }