web/admin: fix inconsistent ordering for ldap property mappings
Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
parent
2ec1ff2ebb
commit
cc6d5765f2
|
@ -27,10 +27,10 @@ class LDAPSourceSerializer(SourceSerializer):
|
|||
"""Check that only a single source has password_sync on"""
|
||||
sync_users_password = attrs.get("sync_users_password", True)
|
||||
if sync_users_password:
|
||||
filter = LDAPSource.objects.filter(sync_users_password=True)
|
||||
sources = LDAPSource.objects.filter(sync_users_password=True)
|
||||
if self.instance:
|
||||
filter = filter.exclude(pk=self.instance.pk)
|
||||
if filter.exists():
|
||||
sources = sources.exclude(pk=self.instance.pk)
|
||||
if sources.exists():
|
||||
raise ValidationError(
|
||||
"Only a single LDAP Source with password synchronization is allowed"
|
||||
)
|
||||
|
|
|
@ -213,7 +213,7 @@ export class LDAPSourceForm extends ModelForm<LDAPSource, string> {
|
|||
${until(
|
||||
new PropertymappingsApi(DEFAULT_CONFIG)
|
||||
.propertymappingsLdapList({
|
||||
ordering: "object_field",
|
||||
ordering: "managed,object_field",
|
||||
})
|
||||
.then((mappings) => {
|
||||
return mappings.results.map((mapping) => {
|
||||
|
|
Reference in New Issue