From d2c3ea56bffb009e3e315ae69115fc0c0a1cfff7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Chlo=C3=A9?= Date: Tue, 5 Nov 2024 09:00:00 +0100 Subject: [PATCH] =?UTF-8?q?Suppression=20de=20l'appel=20=C3=A0=20'add=5Fto?= =?UTF-8?q?=5Fcontact=5Flist'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lemarche/www/tenders/utils.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/lemarche/www/tenders/utils.py b/lemarche/www/tenders/utils.py index fa77a7e3c..006684233 100644 --- a/lemarche/www/tenders/utils.py +++ b/lemarche/www/tenders/utils.py @@ -4,7 +4,6 @@ from lemarche.tenders.models import Tender, TenderQuestion from lemarche.users import constants as user_constants from lemarche.users.models import User -from lemarche.utils.emails import add_to_contact_list from lemarche.www.auth.tasks import send_new_user_password_reset_link @@ -79,7 +78,6 @@ def get_or_create_user_from_anonymous_content( ) if created and settings.BITOUBI_ENV == "prod": send_new_user_password_reset_link(user) - add_to_contact_list(user=user, type="signup", source=source) return user