You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
434 B
14 lines
434 B
2 years ago
|
from rest_framework import viewsets
|
||
|
|
||
|
from comment.models import Comment
|
||
|
from comment.serializers import CommentSerializer
|
||
|
from comment.permissions import IsOwnerOrReadOnly
|
||
|
|
||
|
|
||
|
class CommentViewSet(viewsets.ModelViewSet):
|
||
|
queryset = Comment.objects.all()
|
||
|
serializer_class = CommentSerializer
|
||
|
permission_classes = [IsOwnerOrReadOnly]
|
||
|
|
||
|
def perform_create(self, serializer):
|
||
|
serializer.save(author=self.request.user)
|