Skip to content

Commit 0a0d8e8

Browse files
committed
Hotfix: accept를 조회조건으로 변경
1 parent 3839bb1 commit 0a0d8e8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pyconweb2022/program/viewsets.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
class ProposalViewSet(ReadOnlyModelViewSet):
1111
queryset = (
12-
Proposal.objects.filter(accepted=True)
12+
Proposal.objects.all()
1313
.order_by("track_num")
1414
.order_by("video_open_at")
1515
)

0 commit comments

Comments
 (0)