diff options
author | Frederic Guillot <fred@kanboard.net> | 2016-02-14 16:11:55 -0500 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2016-02-14 16:11:55 -0500 |
commit | 07e3f51edb76f1c20c7c7f222b356cd0a26fca42 (patch) | |
tree | 288f076e1800b01e9ac080ab84518dffe31d5820 /app/Controller | |
parent | 30fefe4fa9ab3f04f8344f00556f4f2f2c5ec563 (diff) |
Move project header templates to folder project_header
Diffstat (limited to 'app/Controller')
-rw-r--r-- | app/Controller/Listing.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/app/Controller/Listing.php b/app/Controller/Listing.php index c7d3d9a8..c784dd50 100644 --- a/app/Controller/Listing.php +++ b/app/Controller/Listing.php @@ -32,6 +32,9 @@ class Listing extends Base $this->response->html($this->helper->layout->app('listing/show', $params + array( 'paginator' => $paginator, + 'categories_list' => $this->category->getList($params['project']['id'], false), + 'users_list' => $this->projectUserRole->getAssignableUsersList($params['project']['id'], false), + 'custom_filters_list' => $this->customFilter->getAll($params['project']['id'], $this->userSession->getId()), ))); } } |