debian-mirror-gitlab/app/services/users/respond_to_terms_service.rb

25 lines
493 B
Ruby
Raw Normal View History

2018-10-15 14:42:47 +05:30
module Users
class RespondToTermsService
def initialize(user, term)
@user, @term = user, term
end
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
private
def store_accepted_term(accepted)
@user.update_column(:accepted_term_id, accepted ? @term.id : nil)
end
end
end