added capability to reopen GitLab issues

This commit is contained in:
Matthew Cillo
2015-12-03 21:56:11 -05:00
parent 91bdf6aaf3
commit 61acd80ec3
3 changed files with 36 additions and 0 deletions

View File

@@ -3,6 +3,7 @@
namespace Kanboard\Action;
use Kanboard\Integration\GithubWebhook;
use Kanboard\Integration\GitlabWebhook;
use Kanboard\Integration\BitbucketWebhook;
/**
@@ -23,6 +24,7 @@ class TaskOpen extends Base
{
return array(
GithubWebhook::EVENT_ISSUE_REOPENED,
GitlabWebhook::EVENT_ISSUE_REOPENED,
BitbucketWebhook::EVENT_ISSUE_REOPENED,
);
}