From: Guillaume Pellerin Date: Wed, 3 Dec 2025 06:38:32 +0000 (+0100) Subject: add date_end X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=refs%2Fheads%2Ftc%2Frelease%2F2.0;p=teleforma.git add date_end --- 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()