Welcome to mirror list, hosted at ThFree Co, Russian Federation.

forks_count_service.rb « projects « services « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d67ae78b26803a9e762ba465dff8036605aac93b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
module Projects
  # Service class for getting and caching the number of forks of a project.
  class ForksCountService < Projects::CountService
    def relation_for_count
      self.class.query(@project.id)
    end

    def cache_key_name
      'forks_count'
    end

    def self.query(project_ids)
      ForkNetworkMember.where(forked_from_project: project_ids)
    end
  end
end