Implement full webhook delivery functionality:
- Create SendWebhookJob to handle HTTP POST requests
- Update WebhookChannel to dispatch webhook jobs
- Configure retry logic (5 attempts, 10s backoff)
- Update Test notification payload with success/message structure
Webhook payload structure:
{
"success": true/false,
"message": "notification message",
"event": "event_type",
"url": "coolify_dashboard_url"
}
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
|
||
|---|---|---|
| .. | ||
| DiscordChannel.php | ||
| EmailChannel.php | ||
| PushoverChannel.php | ||
| SendsDiscord.php | ||
| SendsEmail.php | ||
| SendsPushover.php | ||
| SendsSlack.php | ||
| SendsTelegram.php | ||
| SendsWebhook.php | ||
| SlackChannel.php | ||
| TelegramChannel.php | ||
| TransactionalEmailChannel.php | ||
| WebhookChannel.php | ||