From: Guillaume Pellerin Date: Fri, 15 Nov 2024 14:59:19 +0000 (+0100) Subject: notif to all X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=d2978773f82292a20dd9bfa2e5fc1b177d37c9b0;p=teleforma.git notif to all --- 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})