From 87bae89ea340c6954df7e680eb071e2bb036d433 Mon Sep 17 00:00:00 2001 From: Deon George Date: Tue, 18 Mar 2025 23:39:19 +1100 Subject: [PATCH] Fix validation when creating a new entry and not identifying required attributes, broken by 4a84c25 --- app/Classes/LDAP/Schema/AttributeType.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Classes/LDAP/Schema/AttributeType.php b/app/Classes/LDAP/Schema/AttributeType.php index a33631d2..681fd73b 100644 --- a/app/Classes/LDAP/Schema/AttributeType.php +++ b/app/Classes/LDAP/Schema/AttributeType.php @@ -557,7 +557,7 @@ final class AttributeType extends Base { ->unique(); $validation = collect(Arr::get(config('ldap.validation'),$this->name_lc,[])); - if (($heirachy->intersect($this->required_by_object_classes)->count() > 0) + if (($heirachy->intersect($this->required_by_object_classes->keys())->count() > 0) && (! collect($validation->get($this->name_lc))->contains('required'))) { $validation->put($this->name_lc,array_merge(['required','min:1'],$validation->get($this->name_lc,[]))) ->put($this->name_lc.'.*',array_merge(['required','min:1'],$validation->get($this->name_lc.'.*',[])));