From b1e484fad6c6d77ea23c391212bd705805f2284e Mon Sep 17 00:00:00 2001 From: Frederic Guillot Date: Sat, 10 Jan 2015 15:03:42 -0500 Subject: Change events for project modification subscriber --- app/Subscriber/ProjectModificationDateSubscriber.php | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) (limited to 'app/Subscriber') diff --git a/app/Subscriber/ProjectModificationDateSubscriber.php b/app/Subscriber/ProjectModificationDateSubscriber.php index cd83f370..4c5380ff 100644 --- a/app/Subscriber/ProjectModificationDateSubscriber.php +++ b/app/Subscriber/ProjectModificationDateSubscriber.php @@ -4,7 +4,6 @@ namespace Subscriber; use Event\GenericEvent; use Model\Task; -use Integration\GithubWebhook; use Symfony\Component\EventDispatcher\EventSubscriberInterface; class ProjectModificationDateSubscriber extends Base implements EventSubscriberInterface @@ -15,17 +14,11 @@ class ProjectModificationDateSubscriber extends Base implements EventSubscriberI Task::EVENT_CREATE_UPDATE => array('execute', 0), Task::EVENT_CLOSE => array('execute', 0), Task::EVENT_OPEN => array('execute', 0), + Task::EVENT_MOVE_SWIMLANE => array('execute', 0), Task::EVENT_MOVE_COLUMN => array('execute', 0), Task::EVENT_MOVE_POSITION => array('execute', 0), Task::EVENT_MOVE_PROJECT => array('execute', 0), Task::EVENT_ASSIGNEE_CHANGE => array('execute', 0), - GithubWebhook::EVENT_ISSUE_OPENED => array('execute', 0), - GithubWebhook::EVENT_ISSUE_CLOSED => array('execute', 0), - GithubWebhook::EVENT_ISSUE_REOPENED => array('execute', 0), - GithubWebhook::EVENT_ISSUE_ASSIGNEE_CHANGE => array('execute', 0), - GithubWebhook::EVENT_ISSUE_LABEL_CHANGE => array('execute', 0), - GithubWebhook::EVENT_ISSUE_COMMENT => array('execute', 0), - GithubWebhook::EVENT_COMMIT => array('execute', 0), ); } -- cgit v1.2.3