feature/client-template #2

Merged
homeburger merged 27 commits from feature/client-template into main 2026-03-14 23:10:46 -05:00
Showing only changes of commit 60215782c0 - Show all commits

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();
} }