DirectoryTree / LdapRecord-Laravel

Multi-domain LDAP Authentication & Management for Laravel.
https://ldaprecord.com/docs/laravel/v3
MIT License
492 stars 51 forks source link

[Feature] Searching for specific groups all over AD by CN #547

Closed peroxovy closed 1 year ago

peroxovy commented 1 year ago

I'm not sure if it's possible, but what if there will be possible to look for Groups by cn's like:

$group = Group::where('cn', 'group_name');

Like in User model case... I'm now trying to search for groups, using base dn and I couldn't make it. Of course if I put whole "dn" path into the Group::find method it will work.

Is it a good idea?

peroxovy commented 1 year ago

After clearing cache, queries started to work...