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 99ff02b01b - Show all commits

View File

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