Global Boomarks
This commit is contained in:
@@ -7,6 +7,7 @@ use MintyPHP\Http\RequestRuntimeInterface;
|
||||
use MintyPHP\Http\SessionStoreInterface;
|
||||
use MintyPHP\Repository\Support\DatabaseSessionRepository;
|
||||
use MintyPHP\Service\Audit\AuditServicesFactory;
|
||||
use MintyPHP\Service\Bookmark\BookmarkServicesFactory;
|
||||
use MintyPHP\Service\Mail\MailServicesFactory;
|
||||
use MintyPHP\Service\User\UserServicesFactory;
|
||||
|
||||
@@ -32,7 +33,8 @@ class AuthServicesFactory
|
||||
private readonly DatabaseSessionRepository $databaseSessionRepository,
|
||||
private readonly SessionStoreInterface $sessionStore,
|
||||
private readonly CookieStoreInterface $cookieStore,
|
||||
private readonly RequestRuntimeInterface $requestRuntime
|
||||
private readonly RequestRuntimeInterface $requestRuntime,
|
||||
private readonly BookmarkServicesFactory $bookmarkServicesFactory
|
||||
) {
|
||||
}
|
||||
|
||||
@@ -150,7 +152,7 @@ class AuthServicesFactory
|
||||
{
|
||||
return $this->authSessionTenantContextService ??= new AuthSessionTenantContextService(
|
||||
$this->userServicesFactory->createUserTenantContextService(),
|
||||
$this->userServicesFactory->createUserSavedFilterService(),
|
||||
$this->bookmarkServicesFactory->createBookmarkService(),
|
||||
$this->sessionStore
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user