From d2978773f82292a20dd9bfa2e5fc1b177d37c9b0 Mon Sep 17 00:00:00 2001 From: Guillaume Pellerin Date: Fri, 15 Nov 2024 15:59:19 +0100 Subject: [PATCH] notif to all --- teleforma/views/core.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/teleforma/views/core.py b/teleforma/views/core.py index d0e882bf..76a863f8 100644 --- a/teleforma/views/core.py +++ b/teleforma/views/core.py @@ -965,8 +965,7 @@ class LiveConferenceNotify(APIView): if not conference_id: raise Exception('No conference id in request') conference = Conference.objects.get(pk=int(conference_id)) - students = Student.objects.filter(period=conference.period, platform_only=True) - + students = Student.objects.filter(period=conference.period) if conference.bbb_room_id: url = reverse('teleforma-conference-join', kwargs={'pk': conference.id}) -- 2.39.5