Add some routes for transfers.

This commit is contained in:
James Cole
2021-03-07 15:26:42 +01:00
parent 414c99489c
commit 91394553c3
15 changed files with 682 additions and 157 deletions

View File

@@ -118,7 +118,7 @@ class StandardWebhookSender implements WebhookSenderInterface
];
$client = new Client;
try {
$res = $client->request('POST', $this->message->webhook->url, $options);
$res = $client->request('POST', $this->message->webhook->url . 'x', $options);
$this->message->sent = true;
} catch (ClientException | Exception $e) {
Log::error($e->getMessage());