diff options
author | Jacob Vosmaer <jacob@gitlab.com> | 2017-07-31 15:23:05 +0200 |
---|---|---|
committer | Jacob Vosmaer <jacob@gitlab.com> | 2017-08-01 10:48:46 +0200 |
commit | 67de82cf5fa5a6408621cbf955c730e2825d9c39 (patch) | |
tree | 82b65479cc85b0426d09045d88f6d68d09cdcaf7 /app/controllers | |
parent | e99564568b2fefab8973ce571594aaa888cf8494 (diff) | |
download | gitlab-ce-67de82cf5fa5a6408621cbf955c730e2825d9c39.tar.gz |
Add option to use CommitLanguages RPC
Diffstat (limited to 'app/controllers')
-rw-r--r-- | app/controllers/projects/graphs_controller.rb | 18 |
1 files changed, 1 insertions, 17 deletions
diff --git a/app/controllers/projects/graphs_controller.rb b/app/controllers/projects/graphs_controller.rb index 57372f9e79d..475d4c86294 100644 --- a/app/controllers/projects/graphs_controller.rb +++ b/app/controllers/projects/graphs_controller.rb @@ -43,23 +43,7 @@ class Projects::GraphsController < Projects::ApplicationController end def get_languages - @languages = Linguist::Repository.new(@repository.rugged, @repository.rugged.head.target_id).languages - total = @languages.map(&:last).sum - - @languages = @languages.map do |language| - name, share = language - color = Linguist::Language[name].color || "##{Digest::SHA256.hexdigest(name)[0...6]}" - { - value: (share.to_f * 100 / total).round(2), - label: name, - color: color, - highlight: color - } - end - - @languages.sort! do |x, y| - y[:value] <=> x[:value] - end + @languages = @project.repository.languages end def fetch_graph |