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

confidential_issue_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: 481fde8c83d603879b2c81fd48575605d5fc79e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# frozen_string_literal: true

module TodosDestroyer
  class ConfidentialIssueWorker
    include ApplicationWorker
    include TodosDestroyerQueue

    def perform(issue_id)
      ::Todos::Destroy::ConfidentialIssueService.new(issue_id).execute
    end
  end
end