Updating and Deleting a Comment
Learn to implement the functionality to update and delete comments in our application.
We'll cover the following
Updating a comment is an action that can only be done by the author of the comment. And the user should only be able to update the body field of the comment and can’t modify the author value. Let's go over the steps to add the update feature.
In core/comment/viewsets
, make sure that put
is in the list of http_method_names
of CommentViewSet
:
Get hands-on with 1400+ tech skills courses.