use BookStack\Auth\Access\Guards\LdapSessionGuard;
use BookStack\Auth\Access\Guards\Saml2SessionGuard;
use BookStack\Auth\Access\LdapService;
+use BookStack\Auth\Access\RegistrationService;
use BookStack\Auth\UserRepo;
use Illuminate\Support\ServiceProvider;
$provider,
$this->app['session.store'],
$app[LdapService::class],
- $app[UserRepo::class]
+ $app[RegistrationService::class]
);
});
$name,
$provider,
$this->app['session.store'],
- $app[UserRepo::class]
+ $app[RegistrationService::class]
);
});
}