Skip to content

Instantly share code, notes, and snippets.

@ryanwitt
Created June 16, 2009 05:51
Show Gist options
  • Save ryanwitt/130555 to your computer and use it in GitHub Desktop.
Save ryanwitt/130555 to your computer and use it in GitHub Desktop.
# settings.py
LOGIN_URL = '/login/'
LOGIN_EXEMPT_URLS = (
r'^about\.html$',
r'^legal/', # allow any URL under /legal/*
)
MIDDLEWARE_CLASSES = (
# ...
'python.path.to.LoginRequiredMiddleware',
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment