Created
December 20, 2012 08:23
-
-
Save omaraboumrad/4343776 to your computer and use it in GitHub Desktop.
Django middleware
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 FooMiddleware(object): | |
def process_request(self, request): | |
pass | |
# in settings.py | |
MIDDLEWARE_CLASSES = ( | |
# ... | |
'myapp.foo.middleware.FooMiddleware', | |
) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment