fix(tests): replace appLogoUrlAbsolute with resolveAppUrl in auth services

This commit is contained in:
aminovfariz
2026-06-05 14:43:52 +02:00
parent 5367449d80
commit acf3229f3f
2 changed files with 2 additions and 2 deletions

View File

@@ -78,7 +78,7 @@ class EmailVerificationService
$vars = [
'app_name' => $this->resolveAppTitle(),
'app_logo_url' => appLogoUrlAbsolute(128),
'app_logo_url' => $this->resolveAppUrl(appLogoUrl(128)),
'imprint_url' => $this->resolveAppUrl(Request::withLocale('imprint', $locale)),
'privacy_url' => $this->resolveAppUrl(Request::withLocale('privacy', $locale)),
'code' => $code,

View File

@@ -81,7 +81,7 @@ class PasswordResetService
$vars = [
'app_name' => $this->resolveAppTitle(),
'app_logo_url' => appLogoUrlAbsolute(128),
'app_logo_url' => $this->resolveAppUrl(appLogoUrl(128)),
'imprint_url' => $this->resolveAppUrl(Request::withLocale('imprint', $locale)),
'privacy_url' => $this->resolveAppUrl(Request::withLocale('privacy', $locale)),
'code' => $code,