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

project_private_worker.rb « todos_destroyer « workers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 064e001530c2c8a780ed26ce4272c0cf453a8075 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# frozen_string_literal: true

module TodosDestroyer
  class ProjectPrivateWorker
    include ApplicationWorker
    include TodosDestroyerQueue

    def perform(project_id)
      ::Todos::Destroy::ProjectPrivateService.new(project_id).execute
    end
  end
end