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

private_features_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: 09e81216aab4df45b475e7bbc635dbc741f1cb15 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# frozen_string_literal: true

module TodosDestroyer
  class PrivateFeaturesWorker # rubocop:disable Scalability/IdempotentWorker
    include ApplicationWorker

    data_consistency :always

    sidekiq_options retry: 3
    include TodosDestroyerQueue

    def perform(project_id, user_id = nil)
      ::Todos::Destroy::UnauthorizedFeaturesService.new(project_id, user_id).execute
    end
  end
end