From 61cbe57aefa5d27ed13652c550a09774495ab767 Mon Sep 17 00:00:00 2001 From: George Katsikas <giorgakis.katsikas@gmail.com> Date: Mon, 10 Jun 2024 15:10:43 +0200 Subject: [PATCH] allow all production streams to be visible --- scipost_django/production/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scipost_django/production/views.py b/scipost_django/production/views.py index 738e47db6..37d91e392 100644 --- a/scipost_django/production/views.py +++ b/scipost_django/production/views.py @@ -299,7 +299,7 @@ def stream(request, stream_id): """ Overview page for specific stream. """ - streams = ProductionStream.objects.ongoing() + streams = ProductionStream.objects.all() if not request.user.has_perm("scipost.can_view_all_production_streams"): # Restrict stream queryset if user is not supervisor streams = streams.filter_for_user(request.user.production_user) -- GitLab