debian-mirror-gitlab/app/workers/disallow_two_factor_for_group_worker.rb
2021-06-08 01:23:25 +05:30

23 lines
433 B
Ruby

# frozen_string_literal: true
class DisallowTwoFactorForGroupWorker
include ApplicationWorker
sidekiq_options retry: 3
include ExceptionBacktrace
feature_category :subgroups
tags :exclude_from_kubernetes
idempotent!
def perform(group_id)
begin
group = Group.find(group_id)
rescue ActiveRecord::RecordNotFound
return
end
group.update!(require_two_factor_authentication: false)
end
end