From ae4710349869e650b2892f8b8742e1890a40255b Mon Sep 17 00:00:00 2001 From: Daniel Gyulai Date: Thu, 19 Nov 2020 18:42:31 +0100 Subject: [PATCH] Bugfix in CaseController --- CoviDok/BLL/User/Managers/CaseManager.cs | 1 + CoviDok/Controllers/CaseController.cs | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CoviDok/BLL/User/Managers/CaseManager.cs b/CoviDok/BLL/User/Managers/CaseManager.cs index f0aac61..c6dc056 100644 --- a/CoviDok/BLL/User/Managers/CaseManager.cs +++ b/CoviDok/BLL/User/Managers/CaseManager.cs @@ -120,6 +120,7 @@ namespace CoviDok.BLL.User.Managers if (c.CaseStatus == CaseStatus.Certified) throw new ArgumentException("Can't modify closed Case!"); if (s.ID == c.ParentID) c.Assignee = c.DoctorID; // Ha szülő updatel, az assignee az orvos lesz + // TODO Ha a doki VAGY asszisztense frissít if (s.ID == c.DoctorID) c.Assignee = c.ParentID; // Ha doki frissít, a szülőhöz kerül c.LastModificationDate = DateTime.Now; diff --git a/CoviDok/Controllers/CaseController.cs b/CoviDok/Controllers/CaseController.cs index 45e194e..3cba6cc 100644 --- a/CoviDok/Controllers/CaseController.cs +++ b/CoviDok/Controllers/CaseController.cs @@ -74,7 +74,7 @@ namespace CoviDok.Controllers try { Case c = await mgr.CreateCase(s, data.DoctorID, data.ChildID, data.Title, data.StartDate); - return CreatedAtAction("GetPublicChild", new { id = c.Id }, c); + return CreatedAtAction("PostGetCase", new { id = c.Id }, c); } catch (UnauthorizedAccessException) {