Skip to content

Instantly share code, notes, and snippets.

@afrolovskiy
Created October 13, 2014 08:30
Show Gist options
  • Save afrolovskiy/d0270fa4eeec0a36eb0b to your computer and use it in GitHub Desktop.
Save afrolovskiy/d0270fa4eeec0a36eb0b to your computer and use it in GitHub Desktop.
disable csrf checking
class DisableCSRF(object):
def process_request(self, request):
setattr(request, '_dont_enforce_csrf_checks', True)
MIDDLEWARE_CLASSES = ('pdd.settings.local.DisableCSRF',) + base.MIDDLEWARE_CLASSES # noqa
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment