Christophe Francey

Results 13 comments of Christophe Francey

Hi @cbl! Thanks for your quick reply! I'll try to look where I can add the Auth::attempt and try with username instead of samaccountname for the moment (It should works...

After some tests, I could have a semi working solution. ``` // Ignite\Auth\Authentication.php // function attempt( ... // ... $credentials['username'] = $credentials['email']; $credentials['samaccountname'] = $credentials['email']; unset($credentials['email']); unset($credentials['username']); // ... ```...

Thanks for your help! I added `use Illuminate\Contracts\Auth\Access\Authorizable;` in my User model and changed `Lit\Models\User` in theses file bypass the last error: - `Lit\Http\Controllers\User\UserController` - `Lit\Config\User\ProfileSettingsConfig` - `Lit\Config\User\UserConfig` Next I'll...

Yes I changed my `NavigationConfig` to ```php $nav->preset('user.user', ['icon' => fa('users')]), ``` And the error go away! I tried to start from scratch with a new instance of Laravel +...

Hi guys! Thanks for fixing this issue! Now to be back with the main question, we need to custom user field to identify with the guard. Something like that: ```php...

@lpheller `roles` and `permissions` has been changed, table `role_has_permissions` was filled with rights ids and I can't access to permissions manager. Do you have some ideas? --- I added DebugBar...

Yeah that works fine! 8) Unfortunately, info from Users are not displayed. Would it be possible to disable "Create user" as user are binding from our AD ?

Yeah you rock guys! That was the key! My user table isn't the same (username and name)! We only need a way to customize the field to login and my...

Hi! Same issue here, only the locale change in the url, nothing else. Language selector couldn't redirect to the translated route, only on index or without non dynamic text. Example...

PR for docker compose example #65