27 lines
493 B
Ruby
27 lines
493 B
Ruby
# frozen_string_literal: true
|
|
|
|
class GroupDestroyWorker
|
|
include ApplicationWorker
|
|
|
|
data_consistency :always
|
|
|
|
sidekiq_options retry: 3
|
|
include ExceptionBacktrace
|
|
|
|
feature_category :subgroups
|
|
|
|
idempotent!
|
|
deduplicate :until_executed, ttl: 2.hours
|
|
|
|
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
|