diff options
Diffstat (limited to 'app/Controller/CommentListController.php')
-rw-r--r-- | app/Controller/CommentListController.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/app/Controller/CommentListController.php b/app/Controller/CommentListController.php index 63d20663..95c221cc 100644 --- a/app/Controller/CommentListController.php +++ b/app/Controller/CommentListController.php @@ -18,11 +18,14 @@ class CommentListController extends BaseController $task = $this->getTask(); $commentSortingDirection = $this->userMetadataCacheDecorator->get(UserMetadataModel::KEY_COMMENT_SORTING_DIRECTION, 'ASC'); + $compactView = $this->request->getIntegerParam('compact', 0); + $this->response->html($this->template->render('comment_list/show', array( 'project' => $project, 'task' => $task, 'comments' => $this->commentModel->getAll($task['id'], $commentSortingDirection), 'editable' => $this->helper->user->hasProjectAccess('CommentController', 'edit', $task['project_id']), + 'compact' => (bool)$compactView, ))); } |