diff options
author | Frederic Guillot <fred@kanboard.net> | 2016-09-03 20:39:13 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2016-09-03 20:39:13 -0400 |
commit | 8c07a0d03e64227c552f3b4530d3a1e1ba53402b (patch) | |
tree | 1d60285831f41beae2067fe55bd820affda6ebe3 /app/Controller/AnalyticController.php | |
parent | 59fd3c366cd34cf1be3f20d44b424107c88c030b (diff) |
Convert task distribution chart to Vue.js component
Diffstat (limited to 'app/Controller/AnalyticController.php')
-rw-r--r-- | app/Controller/AnalyticController.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/Controller/AnalyticController.php b/app/Controller/AnalyticController.php index c3e7409a..1949b6b8 100644 --- a/app/Controller/AnalyticController.php +++ b/app/Controller/AnalyticController.php @@ -83,11 +83,11 @@ class AnalyticController extends BaseController * * @access public */ - public function tasks() + public function taskDistribution() { $project = $this->getProject(); - $this->response->html($this->helper->layout->analytic('analytic/tasks', array( + $this->response->html($this->helper->layout->analytic('analytic/task_distribution', array( 'project' => $project, 'metrics' => $this->taskDistributionAnalytic->build($project['id']), 'title' => t('Task distribution'), |