summaryrefslogtreecommitdiff
path: root/app/Notification/Webhook.php
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2015-10-17 12:53:11 -0400
committerFrederic Guillot <fred@kanboard.net>2015-10-17 12:53:11 -0400
commit9153c6ff0ddb3170928d33599d9178e67ca466b6 (patch)
tree450891d77f14baf1df068d23609ff326345ef41f /app/Notification/Webhook.php
parent472f94efee77d8f47ece4ead7d36ee02e5df3e56 (diff)
Move ProjectActivitySubscriber to a new notification type
Diffstat (limited to 'app/Notification/Webhook.php')
-rw-r--r--app/Notification/Webhook.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Notification/Webhook.php b/app/Notification/Webhook.php
index feeee5d6..e187909f 100644
--- a/app/Notification/Webhook.php
+++ b/app/Notification/Webhook.php
@@ -49,7 +49,7 @@ class Webhook extends Base implements NotificationInterface
'event_data' => $event_data,
);
- return $this->httpClient->postJson($url, $payload);
+ $this->httpClient->postJson($url, $payload);
}
}
}