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: 0886c6b83151fa9470f7355597eb7422d7b959df (plain)
1
2
3
4
5
class ResetProjectCacheService < BaseService
  def execute
    @project.increment!(:cache_index)
  end
end