From 208cdf5015e457ea7684aca6533fe0ebbabb6cf7 Mon Sep 17 00:00:00 2001 From: Guillaume Pellerin Date: Fri, 22 Nov 2024 11:27:43 +0100 Subject: [PATCH] update notif text --- teleforma/views/core.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/teleforma/views/core.py b/teleforma/views/core.py index 50e38b62..67fc1ec3 100644 --- a/teleforma/views/core.py +++ b/teleforma/views/core.py @@ -969,10 +969,10 @@ class LiveConferenceNotify(APIView): if conference.bbb_room_id: url = reverse('teleforma-conference-join', kwargs={'pk': conference.id}) - text = f"""Une conférence live interactive "{conference.course.title}" commence""" + text = f"""Une visio-conférence interactive "{conference.course.title}" commence""" else: url = reverse('teleforma-conference-detail', kwargs={'period_id': conference.period.id, 'pk': conference.id}) - text = f"""Une conférence live classique "{conference.course.title}" commence""" + text = f"""Une conférence live "{conference.course.title}" commence""" # notify students for student in students: -- 2.39.5