diff options
author | Frederic Guillot <fred@kanboard.net> | 2015-10-17 12:53:11 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2015-10-17 12:53:11 -0400 |
commit | 9153c6ff0ddb3170928d33599d9178e67ca466b6 (patch) | |
tree | 450891d77f14baf1df068d23609ff326345ef41f /app/Notification/Webhook.php | |
parent | 472f94efee77d8f47ece4ead7d36ee02e5df3e56 (diff) |
Move ProjectActivitySubscriber to a new notification type
Diffstat (limited to 'app/Notification/Webhook.php')
-rw-r--r-- | app/Notification/Webhook.php | 2 |
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); } } } |