Feature/Auth: implement user authentication #3

Merged
homeburger merged 48 commits from feature/auth into main 2026-03-22 20:52:22 -05:00
Showing only changes of commit 89b4398442 - Show all commits

View File

@@ -60,6 +60,7 @@ public class ItemsController : ControllerBase {
if(oldItem == null) return NotFound();
Item updatedItem = new Item {
Id = id,
Name = item.Name,
Description = item.Description,
CreatedAt = oldItem.CreatedAt,