You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: app/Jobs/SendMessageToSlackJob.php
+50Lines changed: 50 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -22,6 +22,36 @@ public function __construct(
22
22
}
23
23
24
24
publicfunctionhandle(): void
25
+
{
26
+
if ($this->isSlackWebhook()) {
27
+
$this->sendToSlack();
28
+
29
+
return;
30
+
}
31
+
32
+
/**
33
+
* This works with Mattermost and as a fallback also with Slack, the notifications just look slightly different and advanced formatting for slack is not supported with Mattermost.
0 commit comments