Commit a1481faf by Őry Máté

dashboard: refactor saml_available

parent fcf88559
...@@ -72,6 +72,7 @@ from firewall.models import Vlan, Host, Rule ...@@ -72,6 +72,7 @@ from firewall.models import Vlan, Host, Rule
from .models import Favourite, Profile, GroupProfile from .models import Favourite, Profile, GroupProfile
logger = logging.getLogger(__name__) logger = logging.getLogger(__name__)
saml_available = hasattr(settings, "SAML_CONFIG")
def search_user(keyword): def search_user(keyword):
...@@ -2392,7 +2393,7 @@ class NotificationView(LoginRequiredMixin, TemplateView): ...@@ -2392,7 +2393,7 @@ class NotificationView(LoginRequiredMixin, TemplateView):
def circle_login(request): def circle_login(request):
authentication_form = CircleAuthenticationForm authentication_form = CircleAuthenticationForm
extra_context = { extra_context = {
'saml2': hasattr(settings, "SAML_CONFIG") 'saml2': saml_available,
} }
response = login(request, authentication_form=authentication_form, response = login(request, authentication_form=authentication_form,
extra_context=extra_context) extra_context=extra_context)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment