Skip to content

Commit

Permalink
Merge pull request #99 from martinleveille/fix-webhook-allow-anonymous
Browse files Browse the repository at this point in the history
Fix allow anonymous in webhook controller
  • Loading branch information
bencroker committed Dec 4, 2019
2 parents 517dd28 + 6c81e21 commit 99ce8ff
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/controllers/WebhookController.php
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,8 @@ public function init()
if ($key === null || empty($apiKey) || $key != $apiKey) {
throw new ForbiddenHttpException('Unauthorised access.');
}

parent::init();
}

/**
Expand Down

0 comments on commit 99ce8ff

Please sign in to comment.