diff options
author | Frederic Guillot <fred@kanboard.net> | 2015-12-17 21:38:13 -0500 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2015-12-17 21:38:13 -0500 |
commit | c83f589b22cd548c6de10bfb0c18f767ba7dffd8 (patch) | |
tree | a5842339000632f2270f7732bfd67d46fe88b4cd /app/Controller/Doc.php | |
parent | d0af39170c2c53cf7aa5178a0563bd0d2c667d46 (diff) |
Show only active projects in board selector
Diffstat (limited to 'app/Controller/Doc.php')
-rw-r--r-- | app/Controller/Doc.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Controller/Doc.php b/app/Controller/Doc.php index 08561aa1..a233b120 100644 --- a/app/Controller/Doc.php +++ b/app/Controller/Doc.php @@ -53,7 +53,7 @@ class Doc extends Base } $this->response->html($this->template->layout('doc/show', $this->readFile($filename) + array( - 'board_selector' => $this->projectUserRole->getProjectsByUser($this->userSession->getId()), + 'board_selector' => $this->projectUserRole->getActiveProjectsByUser($this->userSession->getId()), ))); } } |