MCPcopy Index your code
hub / github.com/encode/django-rest-framework / put

Method put

rest_framework/generics.py:229–230  ·  view source on GitHub ↗
(self, request, *args, **kwargs)

Source from the content-addressed store, hash-verified

227 Concrete view for updating a model instance.
228 """
229 def put(self, request, *args, **kwargs):
230 return self.update(request, *args, **kwargs)
231
232 def patch(self, request, *args, **kwargs):
233 return self.partial_update(request, *args, **kwargs)

Callers

nothing calls this directly

Calls 1

updateMethod · 0.45

Tested by

no test coverage detected