DirectoryTree / LdapRecord-Laravel

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

Add ability to add query scopes to `LdapImporter` and `ldap:import` command #474

Closed stevebauman closed 2 years ago

stevebauman commented 2 years ago

Command Usage:

php artisan ldap:import --scopes="App\Ldap\Scopes\OnlyAccounting"

Importer Usage:

$importer = (new LdapImporter)->setLdapScopes(
    \App\Ldap\Scopes\OnlyAccounting::class,
);