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: 676d367a1c1bf2fbcbb5ac5ead5e591312a6844a (plain)
1
2
3
4
5
6
7
# frozen_string_literal: true

class ResetProjectCacheService < BaseService
  def execute
    @project.increment!(:jobs_cache_index)
  end
end