Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/models/network/graph.rb')
-rw-r--r--app/models/network/graph.rb20
1 files changed, 1 insertions, 19 deletions
diff --git a/app/models/network/graph.rb b/app/models/network/graph.rb
index 0f410d4810d..f60e7682418 100644
--- a/app/models/network/graph.rb
+++ b/app/models/network/graph.rb
@@ -2,7 +2,7 @@
module Network
class Graph
- attr_reader :days, :commits, :map, :notes, :repo
+ attr_reader :days, :commits, :map, :repo
def self.max_count
@max_count ||= 650
@@ -17,28 +17,10 @@ module Network
@commits = collect_commits
@days = index_commits
- @notes = collect_notes
end
protected
- def collect_notes
- return {} if Feature.enabled?(:disable_network_graph_notes_count, @project, type: :experiment)
-
- h = Hash.new(0)
-
- @project
- .notes
- .where(noteable_type: 'Commit')
- .group('notes.commit_id')
- .select('notes.commit_id, count(notes.id) as note_count')
- .each do |item|
- h[item.commit_id] = item.note_count.to_i
- end
-
- h
- end
-
# Get commits from repository
#
def collect_commits