mirror of
https://github.com/appwrite/appwrite
synced 2026-05-08 17:51:12 +00:00
debug
This commit is contained in:
parent
adb451234b
commit
12eb3b4eea
1 changed files with 6 additions and 1 deletions
|
|
@ -59,7 +59,12 @@ class Webhooks extends Action
|
|||
if (empty($payload)) {
|
||||
throw new Exception('Missing payload');
|
||||
}
|
||||
var_dump($project);
|
||||
var_dump([
|
||||
'id' => $project->getId(),
|
||||
'webhooks' => $project->getAttribute('webhooks'),
|
||||
'region' => $project->getAttribute('region'),
|
||||
]
|
||||
);
|
||||
|
||||
$events = $payload['events'];
|
||||
$webhookPayload = json_encode($payload['payload']);
|
||||
|
|
|
|||
Loading…
Reference in a new issue