Skip to content
Snippets Groups Projects
Verified Commit e3259921 authored by Nik | Klampfradler's avatar Nik | Klampfradler
Browse files

Make is_staff default to is_superuser on LDAP login

parent cdc54ada
No related branches found
No related tags found
1 merge request!149Support global permission flags by LDAP group
Pipeline #820 canceled
......@@ -235,6 +235,10 @@ if _settings.get("ldap.uri", None):
if _dn:
AUTH_LDAP_USER_FLAGS_BY_GROUP[_flag] = _dn
# Backend admin requires superusers to also be staff members
if "is_superuser" in AUTH_LDAP_USER_FLAGS_BY_GROUP and "is_staff" not in AUTH_LDAP_USER_FLAGS_BY_GROUP:
AUTH_LDAP_USER_FLAGS_BY_GROUP["is_staff"] = AUTH_LDAP_USER_FLAGS_BY_GROUP["is_superuser"]
# Add ModelBckend last so all other backends get a chance
# to verify passwords first
AUTHENTICATION_BACKENDS.append("django.contrib.auth.backends.ModelBackend")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment