Commit 1e9ea377 by Tom Christie

Merge pull request #1887 from pipermerriam/piper/decorate_as_view_response_from_viewsets

Fix missing CSRF exemption on viewsets
parents ddbd3cb6 7f758d1c
......@@ -20,6 +20,7 @@ from __future__ import unicode_literals
from functools import update_wrapper
from django.utils.decorators import classonlymethod
from django.views.decorators.csrf import csrf_exempt
from rest_framework import views, generics, mixins
......@@ -89,7 +90,7 @@ class ViewSetMixin(object):
# resolved URL.
view.cls = cls
view.suffix = initkwargs.get('suffix', None)
return view
return csrf_exempt(view)
def initialize_request(self, request, *args, **kargs):
"""
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment