summaryrefslogtreecommitdiff
path: root/app/finders/trending_projects_finder.rb
diff options
context:
space:
mode:
authorYorick Peterse <yorickpeterse@gmail.com>2015-10-06 13:52:19 +0200
committerYorick Peterse <yorickpeterse@gmail.com>2015-10-06 17:26:32 +0200
commitd15eec64604d68093d8f01711c1847ee240eb0d2 (patch)
treed1e9fdb73d069f8a29ecab964f01d2c3019b4734 /app/finders/trending_projects_finder.rb
parent1f14e689e579163222fa0a410d3ab4ca672d465e (diff)
downloadgitlab-ce-d15eec64604d68093d8f01711c1847ee240eb0d2.tar.gz
Use >= instead of > in TrendingProjectsFinder
By using >= we can ensure we actually get all comments of the past month, instead of the comments of the past month minus the first day in the range.
Diffstat (limited to 'app/finders/trending_projects_finder.rb')
-rw-r--r--app/finders/trending_projects_finder.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/finders/trending_projects_finder.rb b/app/finders/trending_projects_finder.rb
index 9ea342cb26d..9b710f0751f 100644
--- a/app/finders/trending_projects_finder.rb
+++ b/app/finders/trending_projects_finder.rb
@@ -6,7 +6,7 @@ class TrendingProjectsFinder
# Determine trending projects based on comments count
# for period of time - ex. month
- projects.joins(:notes).where('notes.created_at > ?', start_date).
+ projects.joins(:notes).where('notes.created_at >= ?', start_date).
group("projects.id").reorder("count(notes.id) DESC")
end