Little test with AI + Add the equipment #8

Merged
sandre merged 29 commits from feature/by-ai into master 2026-05-16 09:24:15 +00:00
Showing only changes of commit a1321bf548 - Show all commits
@@ -104,6 +104,7 @@ namespace skydiveLogs_api.DomainBusiness
public bool UpdateGear(int id, Gear gear) public bool UpdateGear(int id, Gear gear)
{ {
gear.Id = id; gear.Id = id;
gear.User = _identityService.ConnectedUser;
return _gearRepository.Update(gear); return _gearRepository.Update(gear);
} }