diff options
author | Frederic Guillot <fred@kanboard.net> | 2015-10-02 21:58:00 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2015-10-02 21:58:00 -0400 |
commit | 264b5526035be61c043a5314baa0e07e8f3f8216 (patch) | |
tree | 0bf890e1b9f1a9f9fa8948978902b829a8f4e5e5 /app/Controller/Board.php | |
parent | 370361330aeb37f02e87ab78ae38521da774c957 (diff) |
Add custom filters (refactoring of pull-request #1312)
Diffstat (limited to 'app/Controller/Board.php')
-rw-r--r-- | app/Controller/Board.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/app/Controller/Board.php b/app/Controller/Board.php index 5851bd26..840db05b 100644 --- a/app/Controller/Board.php +++ b/app/Controller/Board.php @@ -52,6 +52,7 @@ class Board extends Base $this->response->html($this->template->layout('board/view_private', array( 'categories_list' => $this->category->getList($params['project']['id'], false), 'users_list' => $this->projectPermission->getMemberList($params['project']['id'], false), + 'custom_filters_list' => $this->customFilter->getAll($params['project']['id'], $this->userSession->getId()), 'swimlanes' => $this->taskFilter->search($params['filters']['search'])->getBoard($params['project']['id']), 'description' => $params['project']['description'], 'board_private_refresh_interval' => $this->config->get('board_private_refresh_interval'), |