debian-mirror-gitlab/app/workers/group_destroy_worker.rb
2019-12-21 20:55:43 +05:30

21 lines
375 B
Ruby

# frozen_string_literal: true
class GroupDestroyWorker
include ApplicationWorker
include ExceptionBacktrace
feature_category :groups
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