We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4230376 commit d37489bCopy full SHA for d37489b
app/participant_portal_api/views/presentation.py
@@ -32,10 +32,12 @@ def get_queryset(self):
32
super()
33
.get_queryset()
34
.filter(
35
- id__in=PresentationSpeaker.objects.filter(
+ id__in=PresentationSpeaker.objects.filter_active()
36
+ .filter(
37
user=self.request.user,
38
presentation__deleted_at__isnull=True,
- ).values_list("presentation_id", flat=True),
39
+ )
40
+ .values_list("presentation_id", flat=True),
41
)
42
43
0 commit comments