From cc06dcbeee3de378e7385d6162d99e090668cd8a Mon Sep 17 00:00:00 2001 From: Guillaume Pellerin Date: Tue, 12 Dec 2023 14:42:46 +0100 Subject: [PATCH] avoid conf notif ATM --- teleforma/models/core.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/teleforma/models/core.py b/teleforma/models/core.py index d0915ff3..f84f0ebc 100755 --- a/teleforma/models/core.py +++ b/teleforma/models/core.py @@ -443,8 +443,8 @@ class Conference(models.Model): # Notify live conferences by sending a signal to websocket. # This signal will be catched by the channel instance to notify students from teleforma.models.notification import notify - requests.post(f"{settings.CHANNEL_URL}{reverse('teleforma-live-conference-notify')}", {'id': self.id}) - self.notified_live = True + #requests.post(f"{settings.CHANNEL_URL}{reverse('teleforma-live-conference-notify')}", {'id': self.id}) + #self.notified_live = True super(Conference, self).save(*args, **kwargs) -- 2.39.5