Skip to content

Commit d37489b

Browse files
committed
fix: 누락된 filter_active 조건 추가
1 parent 4230376 commit d37489b

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

app/participant_portal_api/views/presentation.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,12 @@ def get_queryset(self):
3232
super()
3333
.get_queryset()
3434
.filter(
35-
id__in=PresentationSpeaker.objects.filter(
35+
id__in=PresentationSpeaker.objects.filter_active()
36+
.filter(
3637
user=self.request.user,
3738
presentation__deleted_at__isnull=True,
38-
).values_list("presentation_id", flat=True),
39+
)
40+
.values_list("presentation_id", flat=True),
3941
)
4042
)
4143

0 commit comments

Comments
 (0)