mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
33 lines
609 B
PHP
33 lines
609 B
PHP
<?php
|
|
|
|
namespace BookStack\Providers;
|
|
|
|
use Auth;
|
|
use BookStack\Auth\Access\LdapService;
|
|
use Illuminate\Support\ServiceProvider;
|
|
|
|
class AuthServiceProvider extends ServiceProvider
|
|
{
|
|
/**
|
|
* Bootstrap the application services.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function boot()
|
|
{
|
|
//
|
|
}
|
|
|
|
/**
|
|
* Register the application services.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function register()
|
|
{
|
|
Auth::provider('ldap', function ($app, array $config) {
|
|
return new LdapUserProvider($config['model'], $app[LdapService::class]);
|
|
});
|
|
}
|
|
}
|