Created
October 13, 2014 08:30
-
-
Save afrolovskiy/d0270fa4eeec0a36eb0b to your computer and use it in GitHub Desktop.
disable csrf checking
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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