gitlab-org--gitlab-foss/app/services/projects/all_issues_count_service.rb

16 lines
312 B
Ruby

# frozen_string_literal: true
module Projects
# Service class for counting and caching the number of all issues of a
# project.
class AllIssuesCountService < Projects::CountService
def relation_for_count
@project.issues
end
def cache_key_name
'all_issues_count'
end
end
end