Update lookup.rs (#359)

Add "groupOfUniqueNames"
This commit is contained in:
Jean-Yves
2024-04-17 22:37:20 +02:00
committed by GitHub
parent 3cc3b726ea
commit 1b95773379

View File

@@ -368,7 +368,7 @@ impl LdapMappings {
"posixaccount" | "individual" | "person" | "inetorgperson" => {
principal.typ = Type::Individual
}
"posixgroup" | "group" => principal.typ = Type::Group,
"posixgroup" | "groupofuniquenames" | "group" => principal.typ = Type::Group,
_ => continue,
}
break;