Skip to content
Snippets Groups Projects
Verified Commit 74825fd7 authored by Jonathan Weth's avatar Jonathan Weth :keyboard:
Browse files

Set import references to be not required

parent d3f9cf64
No related branches found
No related tags found
No related merge requests found
......@@ -5,5 +5,5 @@ from jsonstore import CharField
from aleksis.core.models import Group, Person
# Fields as import refs for LDAP objects
Group.field(ldap_dn=CharField(verbose_name=_("LDAP Distinguished Name")))
Person.field(ldap_dn=CharField(verbose_name=_("LDAP Distinguished Name")))
Group.field(ldap_dn=CharField(verbose_name=_("LDAP Distinguished Name"), null=True, blank=True))
Person.field(ldap_dn=CharField(verbose_name=_("LDAP Distinguished Name"), null=True, blank=True))
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