diff options
author | Frederic Guillot <fred@kanboard.net> | 2016-01-07 21:05:23 -0500 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2016-01-07 21:05:23 -0500 |
commit | 7864685cfdb64d2ef6497a445f0d8ed96762e4bf (patch) | |
tree | fde3834717d4a435c48dba07885529fdffbe7eb3 /app/Controller/Webhook.php | |
parent | 54b3cfe8a14e99ab2372fc5095facc3a2259f077 (diff) |
Move Gitlab webhook to an external plugin
Diffstat (limited to 'app/Controller/Webhook.php')
-rw-r--r-- | app/Controller/Webhook.php | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/app/Controller/Webhook.php b/app/Controller/Webhook.php index be8bf030..0eafe3e5 100644 --- a/app/Controller/Webhook.php +++ b/app/Controller/Webhook.php @@ -39,19 +39,4 @@ class Webhook extends Base $this->response->text('FAILED'); } - - /** - * Handle Gitlab webhooks - * - * @access public - */ - public function gitlab() - { - $this->checkWebhookToken(); - - $this->gitlabWebhook->setProjectId($this->request->getIntegerParam('project_id')); - $result = $this->gitlabWebhook->parsePayload($this->request->getJson()); - - echo $result ? 'PARSED' : 'IGNORED'; - } } |