From 69ad1bef02286b5583b977c6288c956d915b2dc2 Mon Sep 17 00:00:00 2001 From: Laurent Date: Thu, 9 Oct 2025 13:53:36 +0200 Subject: [PATCH] Adds Whatsapp as contact mean --- biz/models.py | 1 + 1 file changed, 1 insertion(+) diff --git a/biz/models.py b/biz/models.py index 0570502..b4eb180 100644 --- a/biz/models.py +++ b/biz/models.py @@ -41,6 +41,7 @@ class ActivityType(models.TextChoices): CALL = 'CALL', 'Call' PRESS = 'PRESS', 'Press Release' WORD_OF_MOUTH = 'WORD_OF_MOUTH', 'Word of mouth' + WHATS_APP = 'WHATS_APP', 'WhatsApp' class Entity(BaseModel): id = models.UUIDField(primary_key=True, default=uuid.uuid4, editable=True)