From ffc4e84fc50fced19db343b5cdf9db015921e77d Mon Sep 17 00:00:00 2001 From: Guillaume Pellerin Date: Mon, 22 Sep 2025 17:06:13 +0200 Subject: [PATCH] notify all student for published conf --- .../management/commands/teleforma-publish-notify-conferences.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/teleforma/management/commands/teleforma-publish-notify-conferences.py b/teleforma/management/commands/teleforma-publish-notify-conferences.py index e9115bb1..5a25003d 100644 --- a/teleforma/management/commands/teleforma-publish-notify-conferences.py +++ b/teleforma/management/commands/teleforma-publish-notify-conferences.py @@ -125,7 +125,7 @@ class Command(BaseCommand): conference.course_type.name, conference.session] message = "Nouvelle conférence publiée : " + ' - '.join(elm) - students = Student.objects.filter(period=publication.period, platform_only=True) + students = Student.objects.filter(period=publication.period) for student in students: try: if student.user: -- 2.39.5