diff options
author | David Almond <david.almond@f-grp.com> | 2016-08-17 13:13:38 +0100 |
---|---|---|
committer | David Almond <david.almond@f-grp.com> | 2016-08-17 13:13:38 +0100 |
commit | ba99955771bf326753e371d400d91ac4f6065581 (patch) | |
tree | 52d42b3edeed13db4fb3e00fc6fe3aa28ab37134 /app/Controller | |
parent | 98efcf21e355ed6ac3827058b99df86ca67c75bb (diff) | |
parent | e8ec7861af9205898d9ff2d5d7ca76a31224044b (diff) |
Merge branch '1032' into 'stable'
1032
See merge request !1
Diffstat (limited to 'app/Controller')
-rw-r--r-- | app/Controller/ActionController.php | 1 | ||||
-rw-r--r-- | app/Controller/ActionCreationController.php | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/app/Controller/ActionController.php b/app/Controller/ActionController.php index 097640f6..c935125a 100644 --- a/app/Controller/ActionController.php +++ b/app/Controller/ActionController.php @@ -33,6 +33,7 @@ class ActionController extends BaseController 'colors_list' => $this->colorModel->getList(), 'categories_list' => $this->categoryModel->getList($project['id']), 'links_list' => $this->linkModel->getList(0, false), + 'swimlane_list' => $this->swimlaneModel->getList($project['id']), 'title' => t('Automatic actions') ))); } diff --git a/app/Controller/ActionCreationController.php b/app/Controller/ActionCreationController.php index 9b228f28..1629e68f 100644 --- a/app/Controller/ActionCreationController.php +++ b/app/Controller/ActionCreationController.php @@ -84,6 +84,7 @@ class ActionCreationController extends BaseController 'priorities_list' => $this->projectTaskPriorityModel->getPriorities($project), 'project' => $project, 'available_actions' => $this->actionManager->getAvailableActions(), + 'swimlane_list' => $this->swimlaneModel->getList($project['id']), 'events' => $this->actionManager->getCompatibleEvents($values['action_name']), ))); } |