From db018b35f9d16fde18f7e9a8158e8ff8f39be2e3 Mon Sep 17 00:00:00 2001 From: LittleSheep Date: Sun, 16 Mar 2025 11:54:28 +0800 Subject: [PATCH] :necktie: Prevent user from deleting their primary contact --- pkg/internal/web/api/contacts_api.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkg/internal/web/api/contacts_api.go b/pkg/internal/web/api/contacts_api.go index d09fdfd..de85094 100644 --- a/pkg/internal/web/api/contacts_api.go +++ b/pkg/internal/web/api/contacts_api.go @@ -118,6 +118,9 @@ func deleteContact(c *fiber.Ctx) error { if err := database.C.Where("account_id = ? AND id = ?", user.ID, contactId).First(&contact).Error; err != nil { return fiber.NewError(fiber.StatusNotFound, err.Error()) } + if contact.IsPrimary { + return fiber.NewError(fiber.StatusBadRequest, "cannot delete primary contact") + } if err := database.C.Delete(&contact).Error; err != nil { return fiber.NewError(fiber.StatusInternalServerError, err.Error())