1
0
mirror of https://github.com/samba-team/samba.git synced 2025-12-14 20:23:54 +03:00

python:domain:user Add altSecurityIdentities

Add altSecurityIdentities to the User domain model so that it can be used by
the key certificate binding enforcement tests.

Signed-off-by: Gary Lockyer <gary@catalyst.net.nz>
Reviewed-by: Jennifer Sutton <jennifersutton@catalyst.net.nz>
This commit is contained in:
Gary Lockyer
2025-09-22 15:42:31 +12:00
committed by Jennifer Sutton
parent 30ed2c9252
commit f9d9f559d9

View File

@@ -44,6 +44,7 @@ class User(OrganizationalPerson):
display_name = StringField("displayName")
key_credential_link = KeyCredentialLinkDnField("msDS-KeyCredentialLink",
many=True)
alt_security_identities = StringField("altSecurityIdentities", many=True)
last_logoff = NtTimeField("lastLogoff", readonly=True)
last_logon = NtTimeField("lastLogon", readonly=True)
logon_count = IntegerField("logonCount", readonly=True)