Skip to content
Snippets Groups Projects
Verified Commit 1d8dcb26 authored by Tom Teichler's avatar Tom Teichler :beers:
Browse files

Remove useless bolean

parent 9f97f27a
No related branches found
No related tags found
1 merge request!2Resolve "Sync additional LDAP fields after login"
......@@ -24,7 +24,6 @@ CONSTANCE_CONFIG = {
_("LDAP sync matching fields"),
"matching-fields-select",
),
"LDAP_SYNC_ADDITIONAL_FIELDS": (True, _("Sync additional fields such as postal address or date of birth."), bool)
"LDAP_SYNC_FIELD_STREET": (None, _("Field for street"), str),
"LDAP_SYNC_FIELD_HOUSENUMBER": (None, _("Field for house number"), str),
"LDAP_SYNC_FIELD_POSTAL_CODE": (None, _("Field for postal code"), str),
......
......@@ -36,15 +36,14 @@ def ldap_create_user(sender, instance, created, raw, using, update_fields, **kwa
)
# Sync additional fields if enabled in config.
if config.LDAP_SYNC_ADDITIONAL_FIELDS:
ldap_user = instance.ldap_user
person.street = ldap_user.attrs.data[config.LDAP_SYNC_FIELD_STREET]
person.housenumber = ldap_user.attrs.data[config.LDAP_SYNC_FIELD_HOUSENUMBER]
person.postal_code = ldap_user.attrs.data[config.LDAP_SYNC_FIELD_POSTAL_CODE]
person.place = ldap_user.attrs.data[config.LDAP_SYNC_FIELD_PLACE]
person.phone_number = ldap_user.attrs.data[config.LDAP_SYNC_FIELD_PHONE_NUMBER]
person.mobile_number = ldap_user.attrs.data[config.LDAP_SYNC_FIELD_MOBILE_NUMBER]
person.date_of_birth = ldap_user.attrs.data[config.LDAP_SYNC_FIELD_DATE_OF_BIRTH]
ldap_user = instance.ldap_user
person.street = ldap_user.attrs.data[config.LDAP_SYNC_FIELD_STREET]
person.housenumber = ldap_user.attrs.data[config.LDAP_SYNC_FIELD_HOUSENUMBER]
person.postal_code = ldap_user.attrs.data[config.LDAP_SYNC_FIELD_POSTAL_CODE]
person.place = ldap_user.attrs.data[config.LDAP_SYNC_FIELD_PLACE]
person.phone_number = ldap_user.attrs.data[config.LDAP_SYNC_FIELD_PHONE_NUMBER]
person.mobile_number = ldap_user.attrs.data[config.LDAP_SYNC_FIELD_MOBILE_NUMBER]
person.date_of_birth = ldap_user.attrs.data[config.LDAP_SYNC_FIELD_DATE_OF_BIRTH]
# Save person if enabled in config or no new person was created.
if config.LDAP_SYNC_CREATE or not created:
......
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