👔 Prevent user from deleting their primary contact

This commit is contained in:
LittleSheep 2025-03-16 11:54:28 +08:00
parent 45dd50ccba
commit db018b35f9

View File

@ -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())