mirror of
https://github.com/redmine/redmine.git
synced 2026-01-30 11:19:59 +01:00
Fixes methods comments. git-svn-id: http://svn.redmine.org/redmine/branches/3.1-stable@14536 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
@@ -947,7 +947,7 @@ class Issue < ActiveRecord::Base
|
||||
end
|
||||
end
|
||||
|
||||
# Preloads visible total spent time for a collection of issues
|
||||
# Preloads visible spent time for a collection of issues
|
||||
def self.load_visible_spent_hours(issues, user=User.current)
|
||||
if issues.any?
|
||||
hours_by_issue_id = TimeEntry.visible(user).where(:issue_id => issues.map(&:id)).group(:issue_id).sum(:hours)
|
||||
@@ -957,6 +957,7 @@ class Issue < ActiveRecord::Base
|
||||
end
|
||||
end
|
||||
|
||||
# Preloads visible total spent time for a collection of issues
|
||||
def self.load_visible_total_spent_hours(issues, user=User.current)
|
||||
if issues.any?
|
||||
hours_by_issue_id = TimeEntry.visible(user).joins(:issue).
|
||||
|
||||
Reference in New Issue
Block a user