コード例 #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))
コード例 #2
0
ファイル: views.py プロジェクト: digitalsatori/edx-platform
 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))