gitlab-org--gitlab-foss/app/workers/group_destroy_worker.rb

22 lines
450 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class GroupDestroyWorker # rubocop:disable Scalability/IdempotentWorker
include ApplicationWorker
include ExceptionBacktrace
feature_category :subgroups
tags :requires_disk_io
def perform(group_id, user_id)
begin
group = Group.find(group_id)
rescue ActiveRecord::RecordNotFound
return
end
user = User.find(user_id)
Groups::DestroyService.new(group, user).execute
end
end