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

reset_project_cache_service.rb « services « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a162a6eedb915bea2d20077c00e855fa9a2507b3 (plain)
1
2
3
4
5
class ResetProjectCacheService < BaseService
  def execute
    @project.increment!(:jobs_cache_index)
  end
end