summaryrefslogtreecommitdiff
path: root/app/services/projects/open_issues_count_service.rb
blob: 3c0d186a73c111e2767e8b0373eefa247037f4dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
module Projects
  # Service class for counting and caching the number of open issues of a
  # project.
  class OpenIssuesCountService < CountService
    def relation_for_count
      # We don't include confidential issues in this number since this would
      # expose the number of confidential issues to non project members.
      @project.issues.opened.public_only
    end

    def cache_key_name
      'open_issues_count'
    end
  end
end