From 881ce1ed387bc83a24adfae96fede6f7f50a48a5 Mon Sep 17 00:00:00 2001 From: Guillaume Pellerin Date: Wed, 3 Dec 2025 07:38:32 +0100 Subject: [PATCH] add date_end --- teleforma/management/commands/teleforma-stop-all-conferences.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/teleforma/management/commands/teleforma-stop-all-conferences.py b/teleforma/management/commands/teleforma-stop-all-conferences.py index a0bfde5b..7e123727 100644 --- a/teleforma/management/commands/teleforma-stop-all-conferences.py +++ b/teleforma/management/commands/teleforma-stop-all-conferences.py @@ -18,3 +18,5 @@ class Command(BaseCommand): def handle(self, *args, **options): for conference in Conference.objects.filter(streaming=True): conference.stop() + for conference in Conference.objects.filter(date_end=None): + conference.stop() -- 2.39.5