This commit is contained in:
shimon 2025-03-02 20:56:28 +02:00
parent 5ed1ca617f
commit 921b9154eb

View file

@ -54,6 +54,12 @@ class Webhooks extends Action
$this->errors = [];
$payload = $message->getPayload() ?? [];
var_dump([
'id' => $project->getId(),
'region' => $project->getAttribute('region'),
]);
if (empty($payload)) {
throw new Exception('Missing payload');
}