ldap-connector
ldap-connector copied to clipboard
Provides an solution for authentication users with LDAP for Laravel 5.x
Hi I use Laravel 5.1 version with ldap-connector. I wonder how can I get all the users which are member of a specific group?! Tnax
Exception when founding no ldap user on Dsdevbe\LdapConnector\Adapter\Adldap.php:59 ``` php public function getUserInfo($username, $password = null) { $user = $this->_ldap->search()->where('samaccountname', '=', $username)->first(); return $this->mapDataToUserModel($user, $password); } ``` When the query...
Hello! Actually in code when you try to log in, the query to ldap finds by "samaccountname", the question is: is it possible change this and search by "mail"? if...
Hi, Actually you use `Dsdevbe\LdapConnector\Model\User` to map ADUser to ModelUser in `ADldap class`. It can be possible to allow set a ModelUser using `config/auth.php` `'model'` option? I would like that...