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 8dcde8f commit c01feb4Copy full SHA for c01feb4
sponsor/viewsets.py
@@ -11,7 +11,7 @@
11
class SponsorViewSet(ModelViewSet):
12
serializer_class = SponsorSerializer
13
permission_classes = [IsOwnerOrReadOnly] # 본인 소유만 수정가능
14
- http_method_names = ["get", "post"] # 지금은 조회/등록만 가능 TODO: 추후 수정기능 추가
+ http_method_names = ["get", "post"] # 지금은 조회/등록만 가능 TODO: 추후 수정기능 추가
15
16
def get_queryset(self):
17
return Sponsor.objects.all()
0 commit comments