From b1e079da74d5e47e03b47b83317b38efa1cf06c0 Mon Sep 17 00:00:00 2001 From: Ludovic Stephan Date: Sat, 13 Jun 2020 19:47:39 +0200 Subject: [PATCH] Update example site --- example_site/example_site/settings.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/example_site/example_site/settings.py b/example_site/example_site/settings.py index 3148128..a2eb594 100644 --- a/example_site/example_site/settings.py +++ b/example_site/example_site/settings.py @@ -118,13 +118,14 @@ STATIC_URL = "/static/" # The only modifications to the default settings are here # # ------------------------------------------------------- # -from django.urls import reverse_lazy # noqa +from django.urls import reverse_lazy # noqa # This is mandatory INSTALLED_APPS += ["example", "authens"] AUTHENTICATION_BACKENDS = [ "django.contrib.auth.backends.ModelBackend", "authens.backends.ENSCASBackend", + "authens.backends.OldCASBackend", ] LOGIN_URL = reverse_lazy("authens:login")