Skip to content

Commit cbc5991

Browse files
committed
feature: 개인후원자 순서를 랜덤하게 응답
파이콘 한국 2022의 모든 개인후원 금액을 동일 -> 기존의 금액순 정렬 룰이 무의미하기에, 셔플 후 응답
1 parent 6235fea commit cbc5991

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pyconweb2022/sponsor/viewsets.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,4 +40,4 @@ class PersonalSponsorshipViewSet(ReadOnlyModelViewSet):
4040
permission_classes = [AllowAny]
4141

4242
def get_queryset(self):
43-
return PersonalSponsorship.objects.all().order_by("-amount")
43+
return PersonalSponsorship.objects.all().order_by("?")

0 commit comments

Comments
 (0)