We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a4a6bb9 commit 8dcde8fCopy full SHA for 8dcde8f
sponsor/viewsets.py
@@ -11,6 +11,7 @@
11
class SponsorViewSet(ModelViewSet):
12
serializer_class = SponsorSerializer
13
permission_classes = [IsOwnerOrReadOnly] # 본인 소유만 수정가능
14
+ http_method_names = ["get", "post"] # 지금은 조회/등록만 가능 TODO: 추후 수정기능 추가
15
16
def get_queryset(self):
17
return Sponsor.objects.all()
0 commit comments