From: Guillaume Pellerin Date: Thu, 5 Feb 2026 14:32:43 +0000 (+0100) Subject: remove live tweeter notif, make live notif async X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=915ef2a22238fd97582578c1076eb3206ac55fac;p=teleforma.git remove live tweeter notif, make live notif async --- diff --git a/teleforma/views/core.py b/teleforma/views/core.py index 6366c71f..8679ea27 100644 --- a/teleforma/views/core.py +++ b/teleforma/views/core.py @@ -934,12 +934,6 @@ class ConferenceView(CourseAccessMixin, DetailView): stream_type=stream_type, streaming=True) stream.save() - if not conference.web_class_group and settings.TELECASTER_LIVE_TWEETER: - try: - site = get_current_site(request) - live_message(site, conference) - except: - pass else: raise 'Error : input must be a conference dictionnary' @@ -1031,7 +1025,7 @@ class NotificationView(APIView): class LiveConferenceNotify(APIView): - def post(self, request): + async def post(self, request): """ notify users a new live conference is starting """