gitlab-org--gitlab-foss/app/services/reset_project_cache_service.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
143 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2017-12-21 00:31:16 +00:00
class ResetProjectCacheService < BaseService
def execute
@project.increment!(:jobs_cache_index)
2017-12-21 00:31:16 +00:00
end
end