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

class DisallowTwoFactorForGroupWorker
  include ApplicationWorker
  include ExceptionBacktrace

  feature_category :subgroups
  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