gitlab-org--gitlab-foss/app/services/users/respond_to_terms_service.rb
Yorick Peterse 2039c8280d
Disable existing offenses for the CodeReuse cops
This whitelists all existing offenses for the various CodeReuse cops, of
which most are triggered by the CodeReuse/ActiveRecord cop.
2018-09-11 17:32:00 +02:00

28 lines
615 B
Ruby

# frozen_string_literal: true
module Users
class RespondToTermsService
def initialize(user, term)
@user, @term = user, term
end
# rubocop: disable CodeReuse/ActiveRecord
def execute(accepted:)
agreement = @user.term_agreements.find_or_initialize_by(term: @term)
agreement.accepted = accepted
if agreement.save
store_accepted_term(accepted)
end
agreement
end
# rubocop: enable CodeReuse/ActiveRecord
private
def store_accepted_term(accepted)
@user.update_column(:accepted_term_id, accepted ? @term.id : nil)
end
end
end