Skip to content

Commit

Permalink
Merge branch 'laravel-8-support' of github.com:Okipa/laravel-stuck-jo…
Browse files Browse the repository at this point in the history
…bs-notifier into laravel-8-support
  • Loading branch information
Okipa committed Sep 25, 2020
2 parents bd92dd0 + 5de9058 commit dce92a8
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions config/stuck-jobs-notifier.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,14 +39,20 @@
'channels' => [
'mail',
// 'slack', // Requires laravel/slack-notification-channel package
// NotificationChannels\Webhook\WebhookChannel::class // Requires laravel-notification-channels/webhook package
// NotificationChannels\Webhook\WebhookChannel::class, // Requires laravel-notification-channels/webhook package
],

'mail' => ['to' => 'email@example.test'],
'mail' => [
'to' => 'email@example.test',
],

'slack' => ['webhookUrl' => 'https://your-slack-webhook.slack.com'],
'slack' => [
'webhookUrl' => 'https://your-slack-webhook.slack.com',
],

// Rocket chat webhook example
'webhook' => ['url' => 'https://rocket.chat/hooks/1234/5678'],
'webhook' => [
'url' => 'https://rocket.chat/hooks/1234/5678',
],

];

0 comments on commit dce92a8

Please sign in to comment.