I have found this snippet in the django codebase:
# Add support for browsers which only accept GET and POST for now.
def post(self, request, *args, **kwargs):
return self.delete(request, *args, **kwargs)
What does this mean? Do browsers delete resources with GET
/ POST
requests? Why? Can somebody provide a rationale / history / link for why this might be so?