X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/5c2cc5b446e8b36c5b9ae0d404abdfdc77fc0c22..e7927df2744d46e176c7114bf63f1bd8f5746168:/apps/django_cas/middleware.py diff --git a/apps/django_cas/middleware.py b/apps/django_cas/middleware.py old mode 100755 new mode 100644 index e09f0634..35fd0d5d --- a/apps/django_cas/middleware.py +++ b/apps/django_cas/middleware.py @@ -12,6 +12,7 @@ from django_cas.views import login as cas_login, logout as cas_logout __all__ = ['CASMiddleware'] + class CASMiddleware(object): """Middleware that allows CAS authentication on admin pages""" @@ -22,7 +23,7 @@ class CASMiddleware(object): "middleware to be installed. Edit your MIDDLEWARE_CLASSES " "setting to insert 'django.contrib.auth.middleware." "AuthenticationMiddleware'.") - assert hasattr(request, 'user'), error + # assert hasattr(request, 'user'), error def process_view(self, request, view_func, view_args, view_kwargs): """Forwards unauthenticated requests to the admin page to the CAS