diff options
author | Frederic Guillot <fred@kanboard.net> | 2016-09-03 20:45:30 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2016-09-03 20:45:30 -0400 |
commit | ef8ddb59c94e24383531e52371b70b595dff8e24 (patch) | |
tree | 6fb3884ab6345a5c06a146cb9d3a40cc37c8119a /app/Controller | |
parent | 8c07a0d03e64227c552f3b4530d3a1e1ba53402b (diff) |
Convert user distribution chart to Vue.js component
Diffstat (limited to 'app/Controller')
-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 1949b6b8..e12de0c7 100644 --- a/app/Controller/AnalyticController.php +++ b/app/Controller/AnalyticController.php @@ -99,11 +99,11 @@ class AnalyticController extends BaseController * * @access public */ - public function users() + public function userDistribution() { $project = $this->getProject(); - $this->response->html($this->helper->layout->analytic('analytic/users', array( + $this->response->html($this->helper->layout->analytic('analytic/user_distribution', array( 'project' => $project, 'metrics' => $this->userDistributionAnalytic->build($project['id']), 'title' => t('User repartition'), |