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

group_destroy_worker.rb « workers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 07e82767b062e10b1bbfd44de49a9fc9b15b58d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
class GroupDestroyWorker
  include Sidekiq::Worker
  include DedicatedSidekiqQueue

  def perform(group_id, user_id)
    begin
      group = Group.with_deleted.find(group_id)
    rescue ActiveRecord::RecordNotFound
      return
    end

    user = User.find(user_id)

    Groups::DestroyService.new(group, user).execute
  end
end