fix: use plain password in configuration for MailJet webhook url

This commit is contained in:
Björn Fromme
2026-04-30 11:44:17 +02:00
parent c0c8ad515c
commit 68900dd4ea
8 changed files with 63 additions and 14 deletions
@@ -20,7 +20,7 @@ class MailjetNewsletterWebhookCommandTest extends TestCase
->method('createEventCallbackUrl')
->with(
'unsub',
'https://my.ep-reisen.de/webhooks/mailjet/newsletter',
'https://mailjet:secret@my.ep-reisen.de/webhooks/mailjet/newsletter',
2,
false,
)
@@ -89,6 +89,7 @@ class MailjetNewsletterWebhookCommandTest extends TestCase
return new MailjetNewsletterWebhookCommand(
$mailjetApiClient,
'https://my.ep-reisen.de',
'secret',
$this->createMock(LoggerInterface::class),
);
}