We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents da4bce0 + 6306f78 commit b06fd5bCopy full SHA for b06fd5b
app/Listeners/CheckoutableListener.php
@@ -388,6 +388,9 @@ private function shouldNotSendAnyNotifications($checkoutable): bool
388
if(in_array(get_class($checkoutable), $this->skipNotificationsFor)) {
389
return true;
390
}
391
+ if ($this->shouldSendWebhookNotification()) {
392
+ return false;
393
+ }
394
//runs a check if the category wants to send checkin/checkout emails to users
395
$category = match (true) {
396
$checkoutable instanceof Asset => $checkoutable->model->category,
0 commit comments