示例#1
0
文件: views.py 项目: gopinath81/vmss
 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
 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))
示例#3
0
文件: views.py 项目: truonglx1/lms
 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))
示例#4
0
文件: views.py 项目: ahmadiga/min_edx
 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))