2017-12-01 05:34:24 -05:00
|
|
|
# Service class for getting and caching the number of issues of several projects
|
|
|
|
# Warning: do not user this service with a really large set of projects
|
|
|
|
# because the service use maps to retrieve the project ids
|
2017-11-24 07:20:52 -05:00
|
|
|
module Projects
|
|
|
|
class BatchOpenIssuesCountService < Projects::BatchCountService
|
|
|
|
def global_count
|
2017-11-30 06:52:38 -05:00
|
|
|
@global_count ||= begin
|
|
|
|
count_service.query(project_ids).group(:project_id).count
|
|
|
|
end
|
2017-11-24 07:20:52 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def count_service
|
|
|
|
::Projects::OpenIssuesCountService
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|