summaryrefslogtreecommitdiff
path: root/app/workers/disallow_two_factor_for_group_worker.rb
blob: 4f5ef69a730254e96128233ebf4e639b156bef29 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# frozen_string_literal: true

class DisallowTwoFactorForGroupWorker
  include ApplicationWorker

  data_consistency :always

  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