From e40c2a84cd93683aa7e4d98d4ada7923e32a3e33 Mon Sep 17 00:00:00 2001 From: Mo Tarbin Date: Tue, 2 Jul 2024 01:39:46 -0400 Subject: Dissociate chore with thing in deleteChore function --- internal/chore/handler.go | 2 ++ 1 file changed, 2 insertions(+) (limited to 'internal/chore') diff --git a/internal/chore/handler.go b/internal/chore/handler.go index 3d9f9e7..919e838 100644 --- a/internal/chore/handler.go +++ b/internal/chore/handler.go @@ -562,6 +562,8 @@ func (h *Handler) deleteChore(c *gin.Context) { return } h.nRepo.DeleteAllChoreNotifications(id) + h.tRepo.DissociateChoreWithThing(c, id) + c.JSON(200, gin.H{ "message": "Chore deleted successfully", }) -- cgit