Exemple #1
0
 def partial_update(self, request, comment_id):
     """
     Implements the PATCH method for the instance endpoint as described in
     the class docstring.
     """
     if request.content_type != MergePatchParser.media_type:
         raise UnsupportedMediaType(request.content_type)
     return Response(update_comment(request, comment_id, request.data))
Exemple #2
0
 def partial_update(self, request, comment_id):
     """
     Implements the PATCH method for the instance endpoint as described in
     the class docstring.
     """
     if request.content_type != MergePatchParser.media_type:
         raise UnsupportedMediaType(request.content_type)
     return Response(update_comment(request, comment_id, request.data))
Exemple #3
0
 def partial_update(self, request, comment_id):
     """
     Implements the PATCH method for the instance endpoint as described in
     the class docstring.
     """
     return Response(update_comment(request, comment_id, request.data))
Exemple #4
0
 def partial_update(self, request, comment_id):
     """
     Implements the PATCH method for the instance endpoint as described in
     the class docstring.
     """
     return Response(update_comment(request, comment_id, request.data))